summary refs log tree commit diff
path: root/pkgs/applications/version-management/darcs_2_pre.nix
blob: a8bd48aa33691adf55b7b8a91f12b74d8f215e7b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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";
  };
}