ac69747aa8
svn path=/nixpkgs/trunk/; revision=32292
28 lines
936 B
Nix
28 lines
936 B
Nix
{ cabal, aeson, attoparsec, base64Bytestring, blazeHtml, Cabal
|
|
, 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 Cabal 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
|
|
];
|
|
};
|
|
})
|