mirror of
https://github.com/nix-community/home-manager
synced 2024-11-10 21:29:48 +01:00
fcitx5: fix reference to fcitx5-with-addons
This commit is contained in:
parent
cf070d340b
commit
941726161c
2 changed files with 13 additions and 11 deletions
|
@ -5,7 +5,8 @@ with lib;
|
||||||
let
|
let
|
||||||
im = config.i18n.inputMethod;
|
im = config.i18n.inputMethod;
|
||||||
cfg = im.fcitx5;
|
cfg = im.fcitx5;
|
||||||
fcitx5Package = pkgs.fcitx5-with-addons.override { inherit (cfg) addons; };
|
fcitx5Package =
|
||||||
|
pkgs.libsForQt5.fcitx5-with-addons.override { inherit (cfg) addons; };
|
||||||
in {
|
in {
|
||||||
options = {
|
options = {
|
||||||
i18n.inputMethod.fcitx5 = {
|
i18n.inputMethod.fcitx5 = {
|
||||||
|
|
|
@ -13,10 +13,8 @@
|
||||||
$out/bin/fcitx5-config-qt
|
$out/bin/fcitx5-config-qt
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
fcitx5-configtool = { outPath = null; };
|
|
||||||
fcitx5-lua = { outPath = null; };
|
fcitx5-lua = { outPath = null; };
|
||||||
fcitx5-gtk = { outPath = null; };
|
fcitx5-gtk = { outPath = null; };
|
||||||
fcitx5-chinese-addons = { outPath = null; };
|
|
||||||
|
|
||||||
gtk2 = {
|
gtk2 = {
|
||||||
buildScript = ''
|
buildScript = ''
|
||||||
|
@ -35,18 +33,21 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
nixpkgs.overlays = [
|
nixpkgs.overlays = [
|
||||||
(final: super: {
|
(final: prev: {
|
||||||
libsForQt5 = super.libsForQt5.overrideScope' (qt5prev: qt5final: {
|
libsForQt5 = prev.libsForQt5.overrideScope (qt5final: qt5prev: {
|
||||||
fcitx5-qt = super.mkStubPackage { outPath = null; };
|
fcitx5-chinese-addons = prev.mkStubPackage { outPath = null; };
|
||||||
});
|
fcitx5-configtool = prev.mkStubPackage { outPath = null; };
|
||||||
|
fcitx5-qt = prev.mkStubPackage { outPath = null; };
|
||||||
|
|
||||||
qt6Packages = super.qt6Packages.overrideScope' (qt6prev: qt6final: {
|
fcitx5-with-addons = qt5prev.fcitx5-with-addons.override {
|
||||||
fcitx5-qt = super.mkStubPackage { outPath = null; };
|
|
||||||
});
|
|
||||||
|
|
||||||
fcitx5-with-addons = super.fcitx5-with-addons.override {
|
|
||||||
inherit (final) libsForQt5 qt6Packages;
|
inherit (final) libsForQt5 qt6Packages;
|
||||||
};
|
};
|
||||||
|
});
|
||||||
|
|
||||||
|
qt6Packages = prev.qt6Packages.overrideScope (qt6final: qt6prev: {
|
||||||
|
fcitx5-qt = prev.mkStubPackage { outPath = null; };
|
||||||
|
});
|
||||||
|
|
||||||
})
|
})
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue