Added par2, unzip/rar as dependencies so they are not picked up from PATH

svn path=/nixpkgs/trunk/; revision=18303
This commit is contained in:
Wouter den Breejen
2009-11-08 23:37:49 +00:00
parent 96b4174b5a
commit 3259101fc0
2 changed files with 5 additions and 5 deletions
+2 -2
View File
@@ -1,4 +1,4 @@
{stdenv, fetchurl, python, cheetahTemplate, makeWrapper}:
{stdenv, fetchurl, python, cheetahTemplate, makeWrapper, par2cmdline, unzip, unrar}:
stdenv.mkDerivation {
name = "sabnzbd-0.4.12";
@@ -9,7 +9,7 @@ stdenv.mkDerivation {
};
buildInputs = [makeWrapper python cheetahTemplate];
inherit stdenv python cheetahTemplate;
inherit stdenv python cheetahTemplate par2cmdline unzip unrar;
builder = ./builder.sh;