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