1
0
Fork 0
mirror of https://github.com/nix-community/home-manager synced 2024-09-21 05:47:29 +02:00

fcitx5: fix reference to fcitx5-with-addons

This commit is contained in:
Robert Helgesson 2024-03-05 22:53:10 +01:00 committed by Mikilio
parent cf070d340b
commit 941726161c
No known key found for this signature in database
GPG key ID: 5B2F1A890CF33F3F
2 changed files with 13 additions and 11 deletions

View file

@ -5,7 +5,8 @@ with lib;
let
im = config.i18n.inputMethod;
cfg = im.fcitx5;
fcitx5Package = pkgs.fcitx5-with-addons.override { inherit (cfg) addons; };
fcitx5Package =
pkgs.libsForQt5.fcitx5-with-addons.override { inherit (cfg) addons; };
in {
options = {
i18n.inputMethod.fcitx5 = {

View file

@ -13,10 +13,8 @@
$out/bin/fcitx5-config-qt
'';
};
fcitx5-configtool = { outPath = null; };
fcitx5-lua = { outPath = null; };
fcitx5-gtk = { outPath = null; };
fcitx5-chinese-addons = { outPath = null; };
gtk2 = {
buildScript = ''
@ -35,18 +33,21 @@
};
nixpkgs.overlays = [
(final: super: {
libsForQt5 = super.libsForQt5.overrideScope' (qt5prev: qt5final: {
fcitx5-qt = super.mkStubPackage { outPath = null; };
(final: prev: {
libsForQt5 = prev.libsForQt5.overrideScope (qt5final: qt5prev: {
fcitx5-chinese-addons = prev.mkStubPackage { outPath = null; };
fcitx5-configtool = prev.mkStubPackage { outPath = null; };
fcitx5-qt = prev.mkStubPackage { outPath = null; };
fcitx5-with-addons = qt5prev.fcitx5-with-addons.override {
inherit (final) libsForQt5 qt6Packages;
};
});
qt6Packages = super.qt6Packages.overrideScope' (qt6prev: qt6final: {
fcitx5-qt = super.mkStubPackage { outPath = null; };
qt6Packages = prev.qt6Packages.overrideScope (qt6final: qt6prev: {
fcitx5-qt = prev.mkStubPackage { outPath = null; };
});
fcitx5-with-addons = super.fcitx5-with-addons.override {
inherit (final) libsForQt5 qt6Packages;
};
})
];
}