2011-08-10 02:35:08 +02:00
|
|
|
{ cabal, curl, HTTP, extensibleExceptions, hashedStorage, haskeline
|
2011-08-12 02:18:56 +02:00
|
|
|
, html, mmap, mtl, network, parsec, random, regexCompat, tar
|
|
|
|
, terminfo, text, zlib
|
2011-08-10 02:35:08 +02:00
|
|
|
}:
|
2008-02-09 14:52:41 +01:00
|
|
|
|
2011-08-10 02:35:08 +02:00
|
|
|
cabal.mkDerivation (self: {
|
2009-04-18 17:42:59 +02:00
|
|
|
pname = "darcs";
|
2011-08-10 02:35:08 +02:00
|
|
|
version = "2.5.2";
|
|
|
|
sha256 = "11mk1xcrxk2x5c0s96s19wb4xvhjl9s59bdqcrj8f4w09zbgjlw9";
|
|
|
|
isLibrary = true;
|
|
|
|
isExecutable = true;
|
|
|
|
buildDepends = [
|
|
|
|
HTTP extensibleExceptions hashedStorage haskeline html mmap mtl
|
2011-08-12 02:18:56 +02:00
|
|
|
network parsec random regexCompat tar terminfo text zlib
|
2010-04-27 21:51:37 +02:00
|
|
|
];
|
2011-08-10 02:35:08 +02:00
|
|
|
extraLibraries = [ curl ];
|
2008-02-09 14:52:41 +01:00
|
|
|
meta = {
|
2011-08-10 02:35:08 +02:00
|
|
|
homepage = "http://darcs.net/";
|
|
|
|
description = "a distributed, interactive, smart revision control system";
|
2010-04-27 21:51:37 +02:00
|
|
|
license = "GPL";
|
2011-08-10 02:35:08 +02:00
|
|
|
platforms = self.ghc.meta.platforms;
|
|
|
|
maintainers = [
|
|
|
|
self.stdenv.lib.maintainers.andres
|
|
|
|
self.stdenv.lib.maintainers.simons
|
|
|
|
];
|
2008-02-09 14:52:41 +01:00
|
|
|
};
|
2009-04-18 17:42:59 +02:00
|
|
|
})
|