2011-08-15 00:52:05 +02:00
|
|
|
{ cabal, HDBC, mtl, parsec, postgresql, time, utf8String }:
|
2009-06-12 15:39:05 +02:00
|
|
|
|
2011-08-10 01:00:20 +02:00
|
|
|
cabal.mkDerivation (self: {
|
2009-06-12 15:39:05 +02:00
|
|
|
pname = "HDBC-postgresql";
|
2011-08-10 01:00:20 +02:00
|
|
|
version = "2.3.2.0";
|
|
|
|
sha256 = "0fwza9h2ghl70x44c4snfybnnfsj1mwlf5a1x12ddl1fbj6fx6gs";
|
|
|
|
isLibrary = true;
|
|
|
|
isExecutable = true;
|
|
|
|
buildDepends = [ HDBC mtl parsec time utf8String ];
|
|
|
|
extraLibraries = [ postgresql ];
|
2009-06-12 15:39:05 +02:00
|
|
|
meta = {
|
2011-08-10 01:00:20 +02:00
|
|
|
homepage = "http://software.complete.org/hdbc-postgresql";
|
|
|
|
description = "PostgreSQL driver for HDBC";
|
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
|
|
|
maintainers = [
|
|
|
|
self.stdenv.lib.maintainers.andres
|
|
|
|
self.stdenv.lib.maintainers.simons
|
|
|
|
];
|
2009-06-12 15:39:05 +02:00
|
|
|
};
|
|
|
|
})
|