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