24 lines
723 B
Nix
24 lines
723 B
Nix
{ cabal, attoparsec, base16Bytestring, blazeBuilder, blazeTextual
|
|
, cryptohash, HUnit, postgresqlLibpq, text, time, transformers
|
|
, vector
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "postgresql-simple";
|
|
version = "0.3.5.0";
|
|
sha256 = "09w9cdjn9jvmcwh63ydjl8p28xfhrhy448y211z3carx2zwryshi";
|
|
buildDepends = [
|
|
attoparsec blazeBuilder blazeTextual postgresqlLibpq text time
|
|
transformers vector
|
|
];
|
|
testDepends = [
|
|
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 ];
|
|
};
|
|
})
|