2013-09-12 17:11:43 +01:00
|
|
|
{ cabal, aeson, attoparsec, base16Bytestring, blazeBuilder
|
2014-03-23 02:40:14 +00:00
|
|
|
, blazeTextual, cryptohash, hashable, HUnit, postgresqlLibpq
|
|
|
|
, scientific, text, time, transformers, uuid, vector
|
2012-07-15 19:40:58 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "postgresql-simple";
|
2014-03-23 02:40:14 +00:00
|
|
|
version = "0.4.2.0";
|
|
|
|
sha256 = "0g31a7s2h9d6f3igvrddbr357sk4vabvg88mmvb194pps66y8zzn";
|
2012-07-15 19:40:58 +01:00
|
|
|
buildDepends = [
|
2014-03-23 02:40:14 +00:00
|
|
|
aeson attoparsec blazeBuilder blazeTextual hashable postgresqlLibpq
|
|
|
|
scientific text 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
|
|
|
};
|
|
|
|
})
|