Skip to content

Commit

Permalink
Revert "ibus: fix dconf db installation"
Browse files Browse the repository at this point in the history
  • Loading branch information
worldofpeace committed Apr 24, 2020
1 parent eeb4e52 commit ee5cba2
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 42 deletions.
2 changes: 1 addition & 1 deletion nixos/modules/i18n/input-method/ibus.nix
Expand Up @@ -64,7 +64,7 @@ in
# Without dconf enabled it is impossible to use IBus
programs.dconf.enable = true;

programs.dconf.packages = [ ibusPackage ];
programs.dconf.profiles.ibus = "${ibusPackage}/etc/dconf/profile/ibus";

services.dbus.packages = [
ibusAutostart
Expand Down
35 changes: 10 additions & 25 deletions nixos/modules/programs/dconf.nix
Expand Up @@ -4,24 +4,13 @@ with lib;

let
cfg = config.programs.dconf;
cfgDir = pkgs.symlinkJoin {
name = "dconf-system-config";
paths = map (x: "${x}/etc/dconf") cfg.packages;
postBuild = ''
mkdir -p $out/profile
mkdir -p $out/db
'' + (
concatStringsSep "\n" (
mapAttrsToList (
name: path: ''
ln -s ${path} $out/profile/${name}
''
) cfg.profiles
)
) + ''
${pkgs.dconf}/bin/dconf update $out/db
'';
};

mkDconfProfile = name: path:
{
name = "dconf/profile/${name}";
value.source = path;
};

in
{
###### interface
Expand All @@ -33,22 +22,18 @@ in
profiles = mkOption {
type = types.attrsOf types.path;
default = {};
description = "Set of dconf profile files, installed at <filename>/etc/dconf/profiles/<replaceable>name</replaceable></filename>.";
description = "Set of dconf profile files.";
internal = true;
};

packages = mkOption {
type = types.listOf types.package;
default = [];
description = "A list of packages which provide dconf profiles and databases in <filename>/etc/dconf</filename>.";
};
};
};

###### implementation

config = mkIf (cfg.profiles != {} || cfg.enable) {
environment.etc.dconf.source = mkIf (cfg.profiles != {} || cfg.packages != []) cfgDir;
environment.etc = optionalAttrs (cfg.profiles != {})
(mapAttrs' mkDconfProfile cfg.profiles);

services.dbus.packages = [ pkgs.dconf ];

Expand Down
14 changes: 9 additions & 5 deletions nixos/tests/installed-tests/ibus.nix
Expand Up @@ -5,12 +5,16 @@ makeInstalledTest {

testConfig = {
i18n.inputMethod.enabled = "ibus";
systemd.user.services.ibus-daemon = {
serviceConfig.ExecStart = "${pkgs.ibus}/bin/ibus-daemon --xim --verbose";
wantedBy = [ "graphical-session.target" ];
partOf = [ "graphical-session.target" ];
};
};

preTestScript = ''
# ibus has ibus-desktop-testing-runner but it tries to manage desktop session so we just spawn ibus-daemon ourselves
machine.succeed("ibus-daemon --daemonize --verbose")
'';

withX11 = true;

# TODO: ibus-daemon is currently crashing or something
# maybe make ibus systemd service that auto-restarts?
meta.broken = true;
}
12 changes: 1 addition & 11 deletions pkgs/tools/inputmethods/ibus/default.nix
Expand Up @@ -16,7 +16,6 @@
, gtk2
, gtk3
, gtk-doc
, runCommand
, isocodes
, cldr-emoji-annotation
, unicode-character-database
Expand Down Expand Up @@ -48,14 +47,6 @@ let
makeWrapper ${glib.dev}/bin/glib-mkenums $out/bin/glib-mkenums --unset PYTHONPATH
'';
};
# make-dconf-override-db.sh needs to execute dbus-launch in the sandbox,
# it will fail to read /etc/dbus-1/session.conf unless we add this flag
dbus-launch = runCommand "sandbox-dbus-launch" {
nativeBuildInputs = [ makeWrapper ];
} ''
makeWrapper ${dbus}/bin/dbus-launch $out/bin/dbus-launch \
--add-flags --config-file=${dbus.daemon}/share/dbus-1/session.conf
'';
in

stdenv.mkDerivation rec {
Expand All @@ -80,7 +71,7 @@ stdenv.mkDerivation rec {
outputs = [ "out" "dev" "installedTests" ];

postPatch = ''
patchShebangs --build data/dconf/make-dconf-override-db.sh
echo \#!${runtimeShell} > data/dconf/make-dconf-override-db.sh
cp ${buildPackages.gtk-doc}/share/gtk-doc/data/gtk-doc.make .
'';

Expand Down Expand Up @@ -114,7 +105,6 @@ stdenv.mkDerivation rec {
python3BuildEnv
vala
wrapGAppsHook
dbus-launch
];

propagatedBuildInputs = [
Expand Down

0 comments on commit ee5cba2

Please sign in to comment.