From d86c05ba137b0f876bc03a6898374a5efc304ecf Mon Sep 17 00:00:00 2001 From: Armijn Hemel Date: Mon, 17 Jul 2006 15:52:40 +0000 Subject: [PATCH] add mktemp. Oops. svn path=/nixpkgs/trunk/; revision=5738 --- pkgs/os-specific/linux/kernel/linux-2.6.11.12.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/os-specific/linux/kernel/linux-2.6.11.12.nix b/pkgs/os-specific/linux/kernel/linux-2.6.11.12.nix index a2cf3204d050..73c13deafc4f 100644 --- a/pkgs/os-specific/linux/kernel/linux-2.6.11.12.nix +++ b/pkgs/os-specific/linux/kernel/linux-2.6.11.12.nix @@ -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"; }