* Upgraded Nix to the latest version.

svn path=/nixpkgs/trunk/; revision=929
This commit is contained in:
Eelco Dolstra 2004-04-08 13:50:29 +00:00
parent a1c5ff3fb6
commit f1d1900a92
2 changed files with 4 additions and 4 deletions

View File

@ -1,7 +1,7 @@
. $stdenv/setup . $stdenv/setup
configureFlags="\ configureFlags="\
--with-store-dir=/nix/store --localstatedir=/nix/var \ --with-store-dir=$storeDir --localstatedir=$stateDir \
--with-aterm=$aterm --with-bdb=$bdb" --with-aterm=$aterm --with-bdb=$bdb"
genericBuild genericBuild

View File

@ -8,11 +8,11 @@ assert aterm != null && bdb != null && perl != null;
# assert aterm.version >= 2.0 # assert aterm.version >= 2.0
stdenv.mkDerivation { stdenv.mkDerivation {
name = "nix-0.5pre881"; name = "nix-0.5pre927";
builder = ./builder.sh; builder = ./builder.sh;
src = fetchurl { src = fetchurl {
url = http://catamaran.labs.cs.uu.nl/dist/nix/nix-0.5pre881/nix-0.5pre881.tar.bz2; url = http://catamaran.labs.cs.uu.nl/dist/nix/nix-0.5pre927/nix-0.5pre927.tar.bz2;
md5 = "427a4add7b374ea392ec81a3494cfb23"; md5 = "57d71f86718ba8e75a5ed16a302fcf39";
}; };
buildInputs = [aterm bdb perl]; buildInputs = [aterm bdb perl];
inherit storeDir stateDir aterm bdb; inherit storeDir stateDir aterm bdb;