2012-04-23 10:34:01 +01:00
|
|
|
{ cabal, Diff, filepath, HUnit, mtl, parsec, split, time
|
|
|
|
, utf8String, xml
|
|
|
|
}:
|
2009-07-18 16:25:28 +01:00
|
|
|
|
2011-08-10 00:00:20 +01:00
|
|
|
cabal.mkDerivation (self: {
|
2009-07-18 16:25:28 +01:00
|
|
|
pname = "filestore";
|
2014-04-28 18:17:25 +01:00
|
|
|
version = "0.6.0.2";
|
|
|
|
sha256 = "0dbn358gxg13lxlpqyczcn5g5kvzrz7lv17qsmr53hvmxz8mricr";
|
2013-03-21 10:15:42 +00:00
|
|
|
buildDepends = [ Diff filepath parsec split time utf8String xml ];
|
|
|
|
testDepends = [ Diff filepath HUnit mtl time ];
|
2014-03-26 10:27:16 +00:00
|
|
|
jailbreak = true;
|
2009-07-18 16:25:28 +01:00
|
|
|
meta = {
|
2011-08-11 14:03:51 +01:00
|
|
|
description = "Interface for versioning file stores";
|
2011-08-07 19:23:08 +01:00
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
2011-08-09 10:54:50 +01:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2013-05-10 23:36:36 +01:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2009-07-18 16:25:28 +01:00
|
|
|
};
|
2011-03-28 16:04:00 +01:00
|
|
|
})
|