2013-05-30 10:01:48 +01:00
|
|
|
{ cabal, aeson, blazeBuilder, conduit, monadControl, persistent
|
|
|
|
, postgresqlLibpq, postgresqlSimple, text, time, transformers
|
2012-07-15 19:40:58 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "persistent-postgresql";
|
2014-02-10 10:06:23 +00:00
|
|
|
version = "1.3.0.1";
|
|
|
|
sha256 = "00m78hdrnk367ymlgbi49p2zq2gkwskax1ng2h3ljskf3ic4jahf";
|
2012-07-15 19:40:58 +01:00
|
|
|
buildDepends = [
|
2013-05-30 10:01:48 +01:00
|
|
|
aeson blazeBuilder conduit monadControl persistent postgresqlLibpq
|
2012-07-15 19:40:58 +01: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-10 23:36:36 +01:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2012-07-15 19:40:58 +01:00
|
|
|
};
|
|
|
|
})
|