2012-05-09 12:25:59 +01:00
|
|
|
{ cabal, aeson, attoparsec, base64Bytestring, blazeHtml
|
2013-02-24 21:09:07 +00:00
|
|
|
, blazeMarkup, conduit, hspec, liftedBase, monadControl
|
2014-01-13 14:40:07 +00:00
|
|
|
, monadLogger, pathPieces, poolConduit, resourcet, scientific
|
|
|
|
, silently, sqlite, text, time, transformers, transformersBase
|
|
|
|
, unorderedContainers, vector
|
2011-08-10 00:00:20 +01:00
|
|
|
}:
|
2010-07-21 10:41:12 +01:00
|
|
|
|
2011-08-10 00:00:20 +01:00
|
|
|
cabal.mkDerivation (self: {
|
2010-07-21 10:41:12 +01:00
|
|
|
pname = "persistent";
|
2014-01-13 14:40:07 +00:00
|
|
|
version = "1.3.0.2";
|
|
|
|
sha256 = "16bq0l6nqjpzlbzm47ip2m8b5yhwhf28fpv3hxy7qsnzmy7siv6y";
|
2011-08-10 00:00:20 +01:00
|
|
|
buildDepends = [
|
2012-05-09 12:25:59 +01:00
|
|
|
aeson attoparsec base64Bytestring blazeHtml blazeMarkup conduit
|
2012-08-09 11:10:51 +01:00
|
|
|
liftedBase monadControl monadLogger pathPieces poolConduit
|
2014-01-13 14:40:07 +00:00
|
|
|
resourcet scientific silently text time transformers
|
|
|
|
transformersBase unorderedContainers vector
|
2010-07-21 10:41:12 +01:00
|
|
|
];
|
2013-05-30 10:01:48 +01:00
|
|
|
testDepends = [
|
|
|
|
aeson attoparsec base64Bytestring blazeHtml conduit hspec
|
2014-01-13 14:40:07 +00:00
|
|
|
monadControl monadLogger pathPieces resourcet scientific text time
|
2013-05-30 10:01:48 +01:00
|
|
|
transformers unorderedContainers vector
|
|
|
|
];
|
2011-08-10 00:00:20 +01:00
|
|
|
extraLibraries = [ sqlite ];
|
2010-07-21 10:41:12 +01:00
|
|
|
meta = {
|
2011-08-29 21:27:34 +01:00
|
|
|
homepage = "http://www.yesodweb.com/book/persistent";
|
2012-02-10 11:32:50 +00:00
|
|
|
description = "Type-safe, multi-backend data serialization";
|
2012-04-09 13:37:39 +01:00
|
|
|
license = self.stdenv.lib.licenses.mit;
|
2011-08-10 00:00:20 +01:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2013-05-10 23:36:36 +01:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2010-07-21 10:41:12 +01:00
|
|
|
};
|
|
|
|
})
|