* Upgrade to 0.5pre957 and pass `--disable-init-state'.

svn path=/nixpkgs/trunk/; revision=958
This commit is contained in:
Eelco Dolstra 2004-04-21 11:08:36 +00:00
parent 1049ba5906
commit 7a1b8bfb71
2 changed files with 5 additions and 4 deletions

View File

@ -2,6 +2,7 @@
configureFlags="\ configureFlags="\
--with-store-dir=$storeDir --localstatedir=$stateDir \ --with-store-dir=$storeDir --localstatedir=$stateDir \
--with-aterm=$aterm --with-bdb=$bdb" --with-aterm=$aterm --with-bdb=$bdb" \
--disable-init-state
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.5pre927"; name = "nix-0.5pre957";
builder = ./builder.sh; builder = ./builder.sh;
src = fetchurl { src = fetchurl {
url = http://catamaran.labs.cs.uu.nl/dist/nix/nix-0.5pre927/nix-0.5pre927.tar.bz2; url = http://catamaran.labs.cs.uu.nl/dist/nix/nix-0.5pre957/nix-0.5pre957.tar.bz2;
md5 = "57d71f86718ba8e75a5ed16a302fcf39"; md5 = "d3240f08ad7ee3f1eeab26cd2f8ab9b1";
}; };
buildInputs = [aterm bdb perl curl]; buildInputs = [aterm bdb perl curl];
inherit storeDir stateDir aterm bdb; inherit storeDir stateDir aterm bdb;