2012-02-16 15:05:41 +01:00
|
|
|
{ cabal, aeson, attoparsec, base64Bytestring, blazeHtml, conduit
|
|
|
|
, liftedBase, monadControl, mtl, pathPieces, poolConduit, 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";
|
2012-03-05 12:58:21 +01:00
|
|
|
version = "0.8.0.2";
|
|
|
|
sha256 = "10v11fnx7dhj2gg09k3ji054iywbpazs789vhfxn56wfg6rz59wb";
|
2011-08-10 01:00:20 +02:00
|
|
|
buildDepends = [
|
2012-02-16 15:05:41 +01:00
|
|
|
aeson attoparsec base64Bytestring blazeHtml conduit liftedBase
|
|
|
|
monadControl mtl pathPieces poolConduit text time transformers
|
|
|
|
transformersBase unorderedContainers vector
|
2010-07-21 11:41:12 +02:00
|
|
|
];
|
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";
|
2011-08-10 01:00:20 +02:00
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
|
|
|
maintainers = [
|
|
|
|
self.stdenv.lib.maintainers.andres
|
|
|
|
self.stdenv.lib.maintainers.simons
|
|
|
|
];
|
2010-07-21 11:41:12 +02:00
|
|
|
};
|
|
|
|
})
|