2013-09-12 17:11:43 +01:00
|
|
|
{ cabal, aeson, attoparsec, base16Bytestring, blazeBuilder
|
|
|
|
, blazeTextual, cryptohash, HUnit, postgresqlLibpq, text, time
|
|
|
|
, transformers, vector
|
2012-07-15 19:40:58 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "postgresql-simple";
|
2013-09-12 17:11:43 +01:00
|
|
|
version = "0.3.7.1";
|
|
|
|
sha256 = "1xrgwpg58srmzv1d0jdknyh5vwdq2c40fyqy0wvgppisxzq469wh";
|
2012-07-15 19:40:58 +01:00
|
|
|
buildDepends = [
|
2013-09-12 17:11:43 +01:00
|
|
|
aeson attoparsec blazeBuilder blazeTextual postgresqlLibpq text
|
|
|
|
time transformers vector
|
2012-07-15 19:40:58 +01:00
|
|
|
];
|
2013-05-30 10:01:48 +01:00
|
|
|
testDepends = [
|
|
|
|
base16Bytestring cryptohash HUnit text time vector
|
|
|
|
];
|
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
|
|
|
};
|
|
|
|
})
|