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";
|
2013-10-30 14:05:53 +01:00
|
|
|
version = "0.3.9.1";
|
|
|
|
sha256 = "0byzlmcbwlycvlk35w0gdp5x7860jcc589ypbdx0vm08aq5vz87v";
|
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 = [
|
|
|
|
base16Bytestring cryptohash HUnit text time vector
|
|
|
|
];
|
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
|
|
|
};
|
|
|
|
})
|