30 lines
1 KiB
Nix
30 lines
1 KiB
Nix
{ cabal, aeson, attoparsec, base64Bytestring, blazeHtml
|
|
, blazeMarkup, conduit, hspec, liftedBase, monadControl
|
|
, monadLogger, pathPieces, poolConduit, resourcet, silently, sqlite
|
|
, text, time, transformers, transformersBase, unorderedContainers
|
|
, vector
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "persistent";
|
|
version = "1.1.5.1";
|
|
sha256 = "1ds0q3mzgg60makx7impyxsvpzd3issa89igcy176yb54ypjwfnz";
|
|
buildDepends = [
|
|
aeson attoparsec base64Bytestring blazeHtml blazeMarkup conduit
|
|
liftedBase monadControl monadLogger pathPieces poolConduit
|
|
resourcet silently text time transformers transformersBase
|
|
unorderedContainers vector
|
|
];
|
|
testDepends = [ hspec text ];
|
|
extraLibraries = [ sqlite ];
|
|
meta = {
|
|
homepage = "http://www.yesodweb.com/book/persistent";
|
|
description = "Type-safe, multi-backend data serialization";
|
|
license = self.stdenv.lib.licenses.mit;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [
|
|
self.stdenv.lib.maintainers.andres
|
|
self.stdenv.lib.maintainers.simons
|
|
];
|
|
};
|
|
})
|