5930e47068
- attoparsec-conduit: updated to version 0.4.0.1 - conduit: updated to version 0.4.2 - network-conduit: updated to version 0.4.0.1 - persistent-sqlite: updated to version 0.9.0.2 - persistent: updated to version 0.9.0.4 - semigroups: updated to version 0.8.3.1 - wai-app-static: updated to version 1.2.0.3 - wai-extra: updated to version 1.2.0.4 - wai: updated to version 1.2.0.2 - warp: updated to version 1.2.0.2 - xml-conduit: updated to version 0.7.0.2 svn path=/nixpkgs/trunk/; revision=34027
25 lines
910 B
Nix
25 lines
910 B
Nix
{ cabal, aeson, attoparsec, base64Bytestring, blazeHtml
|
|
, blazeMarkup, conduit, liftedBase, monadControl, pathPieces
|
|
, poolConduit, resourcet, sqlite, text, time, transformers
|
|
, transformersBase, unorderedContainers, vector
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "persistent";
|
|
version = "0.9.0.4";
|
|
sha256 = "1igml2hmc8ga9871dfq4mxqvy639vvlgl3cs48j3b27ci3qwd9jr";
|
|
buildDepends = [
|
|
aeson attoparsec base64Bytestring blazeHtml blazeMarkup conduit
|
|
liftedBase monadControl 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 ];
|
|
};
|
|
})
|