nixpkgs/pkgs/misc/nix/default.nix
Eelco Dolstra 29a457c5b0 * Use Nix 0.10.1.
svn path=/nixpkgs/trunk/; revision=6695
2006-10-11 12:25:40 +00:00

18 lines
442 B
Nix

{ stdenv, fetchurl, aterm, bdb, perl, curl
, storeDir ? "/nix/store"
, stateDir ? "/nix/var"
}:
assert aterm != null && bdb != null && perl != null;
stdenv.mkDerivation {
name = "nix-0.10.1";
builder = ./builder.sh;
src = fetchurl {
url = http://nix.cs.uu.nl/dist/nix/nix-0.10.1/nix-0.10.1.tar.bz2;
md5 = "22dc0c024ca5bb477da0b38ba834dbf2";
};
buildInputs = [aterm bdb perl curl];
inherit storeDir stateDir aterm bdb;
}