add mktemp. Oops.

svn path=/nixpkgs/trunk/; revision=5738
This commit is contained in:
Armijn Hemel 2006-07-17 15:52:40 +00:00
parent 837136958c
commit d86c05ba13

View file

@ -1,4 +1,4 @@
{stdenv, fetchurl, perl}:
{stdenv, fetchurl, perl, mktemp}:
assert stdenv.system == "i686-linux";
@ -11,6 +11,6 @@ stdenv.mkDerivation {
};
config = ./config;
inherit perl;
buildInputs = [perl];
buildInputs = [perl mktemp];
arch="i386";
}