cb28766341
svn path=/nixpkgs/trunk/; revision=32327
28 lines
923 B
Nix
28 lines
923 B
Nix
{ cabal, aeson, attoparsec, base64Bytestring, blazeHtml, conduit
|
|
, liftedBase, monadControl, mtl, pathPieces, poolConduit, sqlite
|
|
, text, time, transformers, transformersBase, unorderedContainers
|
|
, vector
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "persistent";
|
|
version = "0.8.0";
|
|
sha256 = "0z70ibicfbfripp1x9csfvfhn7k26j78jvvig9ylsjwldhysr7qr";
|
|
buildDepends = [
|
|
aeson attoparsec base64Bytestring blazeHtml conduit liftedBase
|
|
monadControl mtl pathPieces poolConduit text time transformers
|
|
transformersBase unorderedContainers vector
|
|
];
|
|
extraLibraries = [ sqlite ];
|
|
meta = {
|
|
homepage = "http://www.yesodweb.com/book/persistent";
|
|
description = "Type-safe, multi-backend data serialization";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [
|
|
self.stdenv.lib.maintainers.andres
|
|
self.stdenv.lib.maintainers.simons
|
|
];
|
|
};
|
|
})
|