b1ef3e6e36
* haskell-mkcabal: updated to version 1.0.0 * haskell-ghc-syb-utils: updated to version 0.2.1.0 * haskell-darcs: updated to version 2.5.2 svn path=/nixpkgs/trunk/; revision=28449
28 lines
806 B
Nix
28 lines
806 B
Nix
{ cabal, curl, HTTP, extensibleExceptions, hashedStorage, haskeline
|
|
, html, mmap, mtl, network, parsec, regexCompat, tar, terminfo
|
|
, text, zlib
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "darcs";
|
|
version = "2.5.2";
|
|
sha256 = "11mk1xcrxk2x5c0s96s19wb4xvhjl9s59bdqcrj8f4w09zbgjlw9";
|
|
isLibrary = true;
|
|
isExecutable = true;
|
|
buildDepends = [
|
|
HTTP extensibleExceptions hashedStorage haskeline html mmap mtl
|
|
network parsec regexCompat tar terminfo text zlib
|
|
];
|
|
extraLibraries = [ curl ];
|
|
meta = {
|
|
homepage = "http://darcs.net/";
|
|
description = "a distributed, interactive, smart revision control system";
|
|
license = "GPL";
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [
|
|
self.stdenv.lib.maintainers.andres
|
|
self.stdenv.lib.maintainers.simons
|
|
];
|
|
};
|
|
})
|