32 lines
1.1 KiB
Nix
32 lines
1.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.2.2.0";
|
|
sha256 = "18p3yz683ks0gdn1l4qys29jj7iqhlwh7i0s50bkl4x1w0mpa1kh";
|
|
buildDepends = [
|
|
aeson attoparsec base64Bytestring blazeHtml blazeMarkup conduit
|
|
liftedBase monadControl monadLogger pathPieces poolConduit
|
|
resourcet silently text time transformers transformersBase
|
|
unorderedContainers vector
|
|
];
|
|
testDepends = [
|
|
aeson attoparsec base64Bytestring blazeHtml conduit hspec
|
|
monadControl monadLogger pathPieces resourcet text time
|
|
transformers unorderedContainers vector
|
|
];
|
|
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 ];
|
|
};
|
|
})
|