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
|
|
|
|
, monadLogger, pathPieces, poolConduit, resourcet, 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";
|
2013-08-14 11:52:03 +02:00
|
|
|
version = "1.2.3.0";
|
|
|
|
sha256 = "0bil1932rnh3my9yjyc4sk24g0qwkkgv8b48nrn7fm007vyf173m";
|
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
|
2012-12-12 11:54:27 +01:00
|
|
|
resourcet silently text time transformers transformersBase
|
2012-08-09 12:10:51 +02:00
|
|
|
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
|
|
|
|
monadControl monadLogger pathPieces resourcet text time
|
|
|
|
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
|
|
|
};
|
|
|
|
})
|