2013-09-12 17:11:43 +01:00
|
|
|
{ cabal, aeson, attoparsec, base16Bytestring, blazeBuilder
|
|
|
|
, blazeTextual, cryptohash, HUnit, postgresqlLibpq, text, time
|
2013-10-30 13:05:53 +00:00
|
|
|
, transformers, uuid, vector
|
2012-07-15 19:40:58 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "postgresql-simple";
|
2013-12-22 16:36:41 +00:00
|
|
|
version = "0.4.0.1";
|
|
|
|
sha256 = "03lj7z0n6yx55xap9606slcp0yiignwild7sibkrmg05jkb193nn";
|
2012-07-15 19:40:58 +01:00
|
|
|
buildDepends = [
|
2013-09-12 17:11:43 +01:00
|
|
|
aeson attoparsec blazeBuilder blazeTextual postgresqlLibpq text
|
2013-10-30 13:05:53 +00:00
|
|
|
time transformers uuid vector
|
2012-07-15 19:40:58 +01:00
|
|
|
];
|
2013-05-30 10:01:48 +01:00
|
|
|
testDepends = [
|
2013-12-19 10:35:26 +00:00
|
|
|
aeson base16Bytestring cryptohash HUnit text time vector
|
2013-05-30 10:01:48 +01:00
|
|
|
];
|
2013-02-24 23:34:56 +00:00
|
|
|
doCheck = false;
|
2012-07-15 19:40:58 +01:00
|
|
|
meta = {
|
|
|
|
description = "Mid-Level PostgreSQL client library";
|
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
|
|
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
|
|
|
};
|
|
|
|
})
|