21 lines
604 B
Nix
21 lines
604 B
Nix
{ cabal, convertible, mtl, text, time, utf8String }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "HDBC";
|
|
version = "2.3.1.2";
|
|
sha256 = "1rjamh8xscb9jhxgxcrs2qnvs2ipv9dqgnn0bpv5vwclmzmn5j87";
|
|
isLibrary = true;
|
|
isExecutable = true;
|
|
buildDepends = [ convertible mtl text time utf8String ];
|
|
meta = {
|
|
homepage = "https://github.com/hdbc/hdbc";
|
|
description = "Haskell Database Connectivity";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [
|
|
self.stdenv.lib.maintainers.andres
|
|
self.stdenv.lib.maintainers.simons
|
|
];
|
|
};
|
|
})
|