mirror of
https://github.com/nix-community/home-manager
synced 2024-11-11 05:39:44 +01:00
fcitx5: fix tests
This commit is contained in:
parent
85f3c41ef2
commit
0e561e8755
1 changed files with 12 additions and 4 deletions
|
@ -15,7 +15,6 @@
|
||||||
};
|
};
|
||||||
fcitx5-configtool = { outPath = null; };
|
fcitx5-configtool = { outPath = null; };
|
||||||
fcitx5-lua = { outPath = null; };
|
fcitx5-lua = { outPath = null; };
|
||||||
fcitx5-qt = { outPath = null; };
|
|
||||||
fcitx5-gtk = { outPath = null; };
|
fcitx5-gtk = { outPath = null; };
|
||||||
fcitx5-chinese-addons = { outPath = null; };
|
fcitx5-chinese-addons = { outPath = null; };
|
||||||
|
|
||||||
|
@ -36,9 +35,18 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
nixpkgs.overlays = [
|
nixpkgs.overlays = [
|
||||||
(self: super: {
|
(final: super: {
|
||||||
fcitx5-with-addons =
|
libsForQt5 = super.libsForQt5.overrideScope' (qt5prev: qt5final: {
|
||||||
super.fcitx5-with-addons.override { inherit (self) fcitx5-qt; };
|
fcitx5-qt = super.mkStubPackage { outPath = null; };
|
||||||
|
});
|
||||||
|
|
||||||
|
qt6Packages = super.qt6Packages.overrideScope' (qt6prev: qt6final: {
|
||||||
|
fcitx5-qt = super.mkStubPackage { outPath = null; };
|
||||||
|
});
|
||||||
|
|
||||||
|
fcitx5-with-addons = super.fcitx5-with-addons.override {
|
||||||
|
inherit (final) libsForQt5 qt6Packages;
|
||||||
|
};
|
||||||
})
|
})
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue