mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
* Add dependency on Curl.
svn path=/nixpkgs/trunk/; revision=931
This commit is contained in:
parent
9dddc7f142
commit
11f838c363
@ -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;
|
||||
}
|
||||
|
@ -634,6 +634,7 @@ rec {
|
||||
|
||||
nix = (import ../misc/nix) {
|
||||
inherit fetchurl stdenv aterm perl;
|
||||
curl = bootCurl; /* !!! ugly */
|
||||
bdb = db4;
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user