2013-05-30 11:01:48 +02:00
|
|
|
{ cabal, aeson, blazeBuilder, conduit, monadControl, persistent
|
|
|
|
, postgresqlLibpq, postgresqlSimple, text, time, transformers
|
2012-07-15 20:40:58 +02:00
|
|
|
}:
|
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "persistent-postgresql";
|
2013-07-01 11:04:04 +02:00
|
|
|
version = "1.2.1";
|
|
|
|
sha256 = "04gl1qdhag60q4j2r61qr1skim1wcyx2vq34j51qk1a62wyqsdrl";
|
2012-07-15 20:40:58 +02:00
|
|
|
buildDepends = [
|
2013-05-30 11:01:48 +02:00
|
|
|
aeson blazeBuilder conduit monadControl persistent postgresqlLibpq
|
2012-07-15 20:40:58 +02:00
|
|
|
postgresqlSimple text time transformers
|
|
|
|
];
|
|
|
|
meta = {
|
|
|
|
homepage = "http://www.yesodweb.com/book/persistent";
|
|
|
|
description = "Backend for the persistent library using postgresql";
|
|
|
|
license = self.stdenv.lib.licenses.mit;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
2013-05-11 00:36:36 +02:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2012-07-15 20:40:58 +02:00
|
|
|
};
|
|
|
|
})
|