3
0
Fork 0
forked from mirrors/nixpkgs

clerk: fix wrapProgram call

This commit is contained in:
Robin Gloster 2017-08-10 15:49:56 +02:00
parent c438fe5a16
commit c3e8d491ff
No known key found for this signature in database
GPG key ID: 5E4C836C632C2882

View file

@ -13,13 +13,11 @@ stdenv.mkDerivation {
buildInputs = [ makeWrapper pythonPackages.mpd2 ]; buildInputs = [ makeWrapper pythonPackages.mpd2 ];
buildPhase = '' dontBuild = true;
echo skipping build phase...
'';
installPhase = '' installPhase = ''
DESTDIR=$out PREFIX=/ make install DESTDIR=$out PREFIX=/ make install
wrapProgram $out/bin/clerk $out/bin/clerk \ wrapProgram $out/bin/clerk \
--prefix PATH : "${stdenv.lib.makeBinPath [ rofi mpc_cli perl utillinux libnotify ]}" --prefix PATH : "${stdenv.lib.makeBinPath [ rofi mpc_cli perl utillinux libnotify ]}"
''; '';