tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
clerk: fix wrapProgram call
Robin Gloster
8 years ago
c3e8d491
c438fe5a
+2
-4
1 changed file
expand all
collapse all
unified
split
pkgs
applications
audio
clerk
default.nix
+2
-4
pkgs/applications/audio/clerk/default.nix
···
13
13
14
14
buildInputs = [ makeWrapper pythonPackages.mpd2 ];
15
15
16
16
-
buildPhase = ''
17
17
-
echo skipping build phase...
18
18
-
'';
16
16
+
dontBuild = true;
19
17
20
18
installPhase = ''
21
19
DESTDIR=$out PREFIX=/ make install
22
22
-
wrapProgram $out/bin/clerk $out/bin/clerk \
20
20
+
wrapProgram $out/bin/clerk \
23
21
--prefix PATH : "${stdenv.lib.makeBinPath [ rofi mpc_cli perl utillinux libnotify ]}"
24
22
'';
25
23