25 lines
753 B
Nix
25 lines
753 B
Nix
{ cabal, aeson, attoparsec, base16Bytestring, blazeBuilder
|
|
, blazeTextual, cryptohash, HUnit, postgresqlLibpq, text, time
|
|
, transformers, uuid, vector
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "postgresql-simple";
|
|
version = "0.4.0.2";
|
|
sha256 = "0gx9jmmzv6aaa6z88i3j51f5hp153dbwzw3x7jx329c5pjp536g9";
|
|
buildDepends = [
|
|
aeson attoparsec blazeBuilder blazeTextual postgresqlLibpq text
|
|
time transformers uuid vector
|
|
];
|
|
testDepends = [
|
|
aeson base16Bytestring cryptohash HUnit text time vector
|
|
];
|
|
doCheck = false;
|
|
meta = {
|
|
description = "Mid-Level PostgreSQL client library";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
|
};
|
|
})
|