sabnzbd: fixup

Forgot to remove the colon when changing from --prefix to --set.
This commit is contained in:
Frederik Rietdijk 2016-09-27 19:46:55 +02:00
parent ba69aa80aa
commit f3d7afa86d

View File

@ -20,7 +20,7 @@ in stdenv.mkDerivation rec {
mkdir $out/bin mkdir $out/bin
echo "${pythonEnv}/bin/python $out/SABnzbd.py \$*" > $out/bin/sabnzbd echo "${pythonEnv}/bin/python $out/SABnzbd.py \$*" > $out/bin/sabnzbd
chmod +x $out/bin/sabnzbd chmod +x $out/bin/sabnzbd
wrapProgram $out/bin/sabnzbd --set PATH : ${path} wrapProgram $out/bin/sabnzbd --set PATH ${path}
''; '';
meta = with stdenv.lib; { meta = with stdenv.lib; {