mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2025-01-07 14:00:59 +03:00
29a457c5b0
svn path=/nixpkgs/trunk/; revision=6695
18 lines
442 B
Nix
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;
|
|
}
|