2012-04-23 02:34:01 -07:00
|
|
|
{ cabal, Diff, filepath, HUnit, mtl, parsec, split, time
|
|
|
|
, utf8String, xml
|
|
|
|
}:
|
2009-07-18 08:25:28 -07:00
|
|
|
|
2011-08-09 16:00:20 -07:00
|
|
|
cabal.mkDerivation (self: {
|
2009-07-18 08:25:28 -07:00
|
|
|
pname = "filestore";
|
2012-05-31 00:24:40 -07:00
|
|
|
version = "0.5";
|
|
|
|
sha256 = "0cppm8iksz4dnh4kafyfy0cqbidw83rdpgc1mksiwh9c9gaxrlq7";
|
2012-04-23 02:34:01 -07:00
|
|
|
isLibrary = true;
|
|
|
|
isExecutable = true;
|
|
|
|
buildDepends = [
|
|
|
|
Diff filepath HUnit mtl parsec split time utf8String xml
|
|
|
|
];
|
2012-06-04 02:46:16 -07:00
|
|
|
noHaddock = true;
|
2012-09-10 05:11:19 -07:00
|
|
|
jailbreak = true;
|
2009-07-18 08:25:28 -07:00
|
|
|
meta = {
|
2011-08-11 06:03:51 -07:00
|
|
|
description = "Interface for versioning file stores";
|
2011-08-07 11:23:08 -07:00
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
2011-08-09 02:54:50 -07:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2012-03-24 03:21:28 -07:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2009-07-18 08:25:28 -07:00
|
|
|
};
|
2011-03-28 08:04:00 -07:00
|
|
|
})
|