* Latest unstable Nix.

svn path=/nixpkgs/trunk/; revision=9274
This commit is contained in:
Eelco Dolstra 2007-09-06 20:45:36 +00:00
parent 6081a072f3
commit a1022416c5
2 changed files with 12 additions and 3 deletions

View File

@ -2,11 +2,18 @@
stdenv.mkDerivation { stdenv.mkDerivation {
name = "p7zip-4.53"; name = "p7zip-4.53";
src = fetchurl { src = fetchurl {
url = mirror://sourceforge/p7zip/p7zip_4.53_src_all.tar.bz2; url = mirror://sourceforge/p7zip/p7zip_4.53_src_all.tar.bz2;
sha256 = "0pbgvpq852qnzq4isgc13p4nnp416xhy5vmn1rcwm8fk43l5rbqd"; sha256 = "0pbgvpq852qnzq4isgc13p4nnp416xhy5vmn1rcwm8fk43l5rbqd";
}; };
preConfigure = " preConfigure = "
makeFlagsArray=(DEST_HOME=$out) makeFlagsArray=(DEST_HOME=$out)
"; ";
meta = {
homepage = http://p7zip.sourceforge.net/;
description = "A port of the 7-zip archiver";
};
} }

View File

@ -3,12 +3,14 @@
, stateDir ? "/nix/var" , stateDir ? "/nix/var"
}: }:
let version = "0.11pre9253"; in
stdenv.mkDerivation { stdenv.mkDerivation {
name = "nix-0.11pre9217"; name = "nix-${version}";
src = fetchurl { src = fetchurl {
url = http://nix.cs.uu.nl/dist/nix/nix-0.11pre9217/nix-0.11pre9217.tar.bz2; url = "http://nix.cs.uu.nl/dist/nix/nix-${version}/nix-${version}.tar.bz2";
sha256 = "79707d04e7a2bd0869b55fbfe05dcb673a2c864fb1fb72c390ae18db5ba633e5"; md5 = "d060c66394b921373430f21dac1c2c4d";
}; };
buildInputs = [perl curl openssl]; buildInputs = [perl curl openssl];