* Add dependency on Curl.

svn path=/nixpkgs/trunk/; revision=931
This commit is contained in:
Eelco Dolstra 2004-04-08 14:17:47 +00:00
parent 9dddc7f142
commit 11f838c363
2 changed files with 3 additions and 2 deletions

View file

@ -1,4 +1,4 @@
{ stdenv, fetchurl, aterm, bdb, perl
{ stdenv, fetchurl, aterm, bdb, perl, curl
, storeDir ? "/nix/store"
, stateDir ? "/nix/var"
}:
@ -14,6 +14,6 @@ stdenv.mkDerivation {
url = http://catamaran.labs.cs.uu.nl/dist/nix/nix-0.5pre927/nix-0.5pre927.tar.bz2;
md5 = "57d71f86718ba8e75a5ed16a302fcf39";
};
buildInputs = [aterm bdb perl];
buildInputs = [aterm bdb perl curl];
inherit storeDir stateDir aterm bdb;
}

View file

@ -634,6 +634,7 @@ rec {
nix = (import ../misc/nix) {
inherit fetchurl stdenv aterm perl;
curl = bootCurl; /* !!! ugly */
bdb = db4;
};