37f707fd92
* Updated Darcs to 2.2.1 and switched to the Cabal builder. However, there are some dependencies missing that Andres will add :-) svn path=/nixpkgs/trunk/; revision=15128
19 lines
432 B
Nix
19 lines
432 B
Nix
{cabal /* , ghc, zlib, ncurses, curl, perl */}:
|
|
|
|
cabal.mkDerivation (self : {
|
|
pname = "darcs";
|
|
version = "2.2.1";
|
|
sha256 = "0iy4d4qls6yhwmgv87pz4kmr5jh4bwigz1wfwzns71b68csynnsp";
|
|
|
|
#buildInputs = [ghc zlib ncurses curl perl];
|
|
|
|
#NIX_LDFLAGS = "-lz";
|
|
|
|
meta = {
|
|
homepage = http://darcs.net/;
|
|
description = "Patch-based version management system";
|
|
};
|
|
|
|
patches = ./bash-completion.patch; # I didn't have "have"
|
|
})
|