nixpkgs/pkgs/development/libraries/haskell/persistent/default.nix
Peter Simons a2d2fa31a6 haskell-persistent: updated to version 0.8.0
svn path=/nixpkgs/trunk/; revision=32179
2012-02-10 11:32:50 +00:00

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
];
};
})