2012-02-16 14:05:41 +00:00
|
|
|
{ cabal, curl, extensibleExceptions, filepath, hashedStorage
|
2012-02-14 17:00:37 +00:00
|
|
|
, haskeline, html, HTTP, mmap, mtl, network, parsec, random
|
2012-04-23 10:34:01 +01:00
|
|
|
, regexCompat, tar, terminfo, text, vector, zlib
|
2011-08-10 01:35:08 +01:00
|
|
|
}:
|
2008-02-09 13:52:41 +00:00
|
|
|
|
2011-08-10 01:35:08 +01:00
|
|
|
cabal.mkDerivation (self: {
|
2009-04-18 16:42:59 +01:00
|
|
|
pname = "darcs";
|
2012-05-15 12:50:48 +01:00
|
|
|
version = "2.8.1";
|
|
|
|
sha256 = "1fz9k9zihb0fz0w2y55iqa1fd604nxzz48r62sx3ixxn8qqsvrd1";
|
2011-08-10 01:35:08 +01:00
|
|
|
isLibrary = true;
|
|
|
|
isExecutable = true;
|
|
|
|
buildDepends = [
|
2012-02-16 14:05:41 +00:00
|
|
|
extensibleExceptions filepath hashedStorage haskeline html HTTP
|
2012-04-23 10:34:01 +01:00
|
|
|
mmap mtl network parsec random regexCompat tar terminfo text vector
|
|
|
|
zlib
|
2010-04-27 20:51:37 +01:00
|
|
|
];
|
2011-08-10 01:35:08 +01:00
|
|
|
extraLibraries = [ curl ];
|
2008-02-09 13:52:41 +00:00
|
|
|
meta = {
|
2011-08-10 01:35:08 +01:00
|
|
|
homepage = "http://darcs.net/";
|
|
|
|
description = "a distributed, interactive, smart revision control system";
|
2010-04-27 20:51:37 +01:00
|
|
|
license = "GPL";
|
2011-08-10 01:35:08 +01:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2012-03-24 10:21:28 +00:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2008-02-09 13:52:41 +00:00
|
|
|
};
|
2009-04-18 16:42:59 +01:00
|
|
|
})
|