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
{ stdenv, fetchgit
2
-
, pass, rofi, coreutils, utillinux, xdotool, gnugrep
3
, makeWrapper }:
4
5
stdenv.mkDerivation rec {
···
26
27
wrapperPath = with stdenv.lib; makeSearchPath "bin/" [
28
coreutils
29
-
utillinux
30
-
rofi
31
pass
0
0
0
32
xdotool
33
-
gnugrep
34
];
35
36
fixupPhase = ''
···
1
{ stdenv, fetchgit
2
+
, pass, rofi, coreutils, utillinux, xdotool, gnugrep, pwgen, findutils
3
, makeWrapper }:
4
5
stdenv.mkDerivation rec {
···
26
27
wrapperPath = with stdenv.lib; makeSearchPath "bin/" [
28
coreutils
29
+
findutils
30
+
gnugrep
31
pass
32
+
pwgen
33
+
rofi
34
+
utillinux
35
xdotool
0
36
];
37
38
fixupPhase = ''