2012-02-16 15:05:41 +01:00
|
|
|
{ cabal, convertible, mtl, text, 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";
|
2012-12-03 16:11:04 +01:00
|
|
|
version = "2.3.1.2";
|
|
|
|
sha256 = "1rjamh8xscb9jhxgxcrs2qnvs2ipv9dqgnn0bpv5vwclmzmn5j87";
|
2011-08-10 01:00:20 +02:00
|
|
|
isLibrary = true;
|
|
|
|
isExecutable = true;
|
2012-02-16 15:05:41 +01:00
|
|
|
buildDepends = [ convertible mtl text time utf8String ];
|
2009-06-12 15:39:05 +02:00
|
|
|
meta = {
|
2012-02-13 10:01:51 +01:00
|
|
|
homepage = "https://github.com/hdbc/hdbc";
|
2011-08-10 01:00:20 +02:00
|
|
|
description = "Haskell Database Connectivity";
|
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
2013-05-11 00:36:36 +02:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2009-06-12 15:39:05 +02:00
|
|
|
};
|
|
|
|
})
|