mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 15:11:25 +00:00
26 lines
937 B
Nix
26 lines
937 B
Nix
{ cabal, aeson, attoparsec, base64Bytestring, blazeHtml
|
|
, blazeMarkup, conduit, liftedBase, monadControl, monadLogger
|
|
, pathPieces, poolConduit, resourcet, sqlite, text, time
|
|
, transformers, transformersBase, unorderedContainers, vector
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "persistent";
|
|
version = "1.1.0";
|
|
sha256 = "15wsw3mnpic8x7qrb8w7ww47p9sazfljp6kcdx13yv2sxa8dv153";
|
|
buildDepends = [
|
|
aeson attoparsec base64Bytestring blazeHtml blazeMarkup conduit
|
|
liftedBase monadControl monadLogger pathPieces poolConduit
|
|
resourcet 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.mit;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
|
};
|
|
})
|