tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
rofi-pass: Add missing dependencies.
moritz.vongoewels.de
10 years ago
3f8ca3c6
710f603d
+6
-4
1 changed file
expand all
collapse all
unified
split
pkgs
tools
security
pass
rofi-pass.nix
+6
-4
pkgs/tools/security/pass/rofi-pass.nix
···
1
1
{ stdenv, fetchgit
2
2
-
, pass, rofi, coreutils, utillinux, xdotool, gnugrep
2
2
+
, pass, rofi, coreutils, utillinux, xdotool, gnugrep, pwgen, findutils
3
3
, makeWrapper }:
4
4
5
5
stdenv.mkDerivation rec {
···
26
26
27
27
wrapperPath = with stdenv.lib; makeSearchPath "bin/" [
28
28
coreutils
29
29
-
utillinux
30
30
-
rofi
29
29
+
findutils
30
30
+
gnugrep
31
31
pass
32
32
+
pwgen
33
33
+
rofi
34
34
+
utillinux
32
35
xdotool
33
33
-
gnugrep
34
36
];
35
37
36
38
fixupPhase = ''