880dcc2c64
By now, it happened twice that a commit broke GHC and thus all Haskell packages we have in Nixpkgs. On such an occasion, I receive well in excess of 3000 notification e-mails from Hydra, and then I receive another 3000 e-mails after the bug has been fixed. Under these circumstances, subscribing to these notifications makes no sense for me. svn path=/nixpkgs/trunk/; revision=33392
25 lines
789 B
Nix
25 lines
789 B
Nix
{ cabal, curl, extensibleExceptions, filepath, hashedStorage
|
|
, haskeline, html, HTTP, mmap, mtl, network, parsec, random
|
|
, regexCompat, tar, terminfo, text, zlib
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "darcs";
|
|
version = "2.5.2";
|
|
sha256 = "11mk1xcrxk2x5c0s96s19wb4xvhjl9s59bdqcrj8f4w09zbgjlw9";
|
|
isLibrary = true;
|
|
isExecutable = true;
|
|
buildDepends = [
|
|
extensibleExceptions filepath hashedStorage haskeline html HTTP
|
|
mmap mtl network parsec random 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 ];
|
|
};
|
|
})
|