added darcs-2.0.0pre

svn path=/nixpkgs/trunk/; revision=10564
This commit is contained in:
Marc Weber
2008-02-09 13:52:41 +00:00
parent e32787dc94
commit cb418b6e34
2 changed files with 22 additions and 0 deletions
@@ -0,0 +1,16 @@
{stdenv, fetchurl, ghc, zlib, ncurses, curl}:
stdenv.mkDerivation {
name = "darcs-2.0.0pre3";
src = fetchurl {
url = http://darcs.net/darcs-2.0.0pre3.tar.gz;
sha256 = "";
};
buildInputs = [ghc zlib ncurses curl];
NIX_LDFLAGS = "-lz";
meta = {
description = "Patch-based version management system";
};
}