2012-03-05 12:58:21 +01:00
|
|
|
{ cabal, convertible, 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";
|
2012-03-05 12:58:21 +01:00
|
|
|
version = "2.3.2.1";
|
|
|
|
sha256 = "1ji10w4d91dp3ci7pn1jd8nb3wasszwlsy1lfbb4mqnr15c9vnpb";
|
2011-08-10 01:00:20 +02:00
|
|
|
isLibrary = true;
|
|
|
|
isExecutable = true;
|
2012-03-05 12:58:21 +01:00
|
|
|
buildDepends = [ convertible HDBC mtl parsec time utf8String ];
|
2011-08-10 01:00:20 +02:00
|
|
|
extraLibraries = [ postgresql ];
|
2009-06-12 15:39:05 +02:00
|
|
|
meta = {
|
2012-03-05 12:58:21 +01:00
|
|
|
homepage = "http://github.com/hdbc/hdbc-postgresql";
|
2011-08-10 01:00:20 +02:00
|
|
|
description = "PostgreSQL driver for HDBC";
|
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
2012-03-24 11:21:28 +01:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2009-06-12 15:39:05 +02:00
|
|
|
};
|
|
|
|
})
|