mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 08:49:44 +01:00
cb09a968e9
This option provides a more convenient way to overlay dummy packages. It also adds a function `config.lib.test.mkStubPackage` that can, e.g., be used for `package` options.
16 lines
341 B
Nix
16 lines
341 B
Nix
{ config, ... }:
|
|
|
|
{
|
|
test.stubs.rbw = { };
|
|
|
|
nixpkgs.overlays = [
|
|
(self: super: {
|
|
pinentry = {
|
|
gnome3 =
|
|
config.lib.test.mkStubPackage { outPath = "@pinentry-gnome3@"; };
|
|
gtk2 = config.lib.test.mkStubPackage { outPath = "@pinentry-gtk2@"; };
|
|
flavors = [ "gnome3" "gtk2" ];
|
|
};
|
|
})
|
|
];
|
|
}
|