mirror of
https://github.com/nix-community/home-manager
synced 2024-11-23 11:39:46 +01:00
rofi-pass: remove test dependency on rofi
This commit is contained in:
parent
479e26dc8c
commit
d819e0741a
2 changed files with 12 additions and 2 deletions
|
@ -17,7 +17,12 @@ with lib;
|
|||
};
|
||||
|
||||
nixpkgs.overlays = [
|
||||
(self: super: { rofi-pass = pkgs.writeScriptBin "dummy-rofi-pass" ""; })
|
||||
(self: super:
|
||||
let dummy = pkgs.writeScriptBin "dummy" "";
|
||||
in {
|
||||
rofi = dummy;
|
||||
rofi-pass = dummy;
|
||||
})
|
||||
];
|
||||
|
||||
nmt.script = ''
|
||||
|
|
|
@ -14,7 +14,12 @@ with lib;
|
|||
};
|
||||
|
||||
nixpkgs.overlays = [
|
||||
(self: super: { rofi-pass = pkgs.writeScriptBin "dummy-rofi-pass" ""; })
|
||||
(self: super:
|
||||
let dummy = pkgs.writeScriptBin "dummy" "";
|
||||
in {
|
||||
rofi = dummy;
|
||||
rofi-pass = dummy;
|
||||
})
|
||||
];
|
||||
|
||||
nmt.script = ''
|
||||
|
|
Loading…
Reference in a new issue