3b2254a3af
There is no point in receiving hundreds of e-mails; I cannot read them anyway.
19 lines
564 B
Nix
19 lines
564 B
Nix
{ cabal, HDBC, mtl, odbc, time, utf8String }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "HDBC-odbc";
|
|
version = "2.3.1.1";
|
|
sha256 = "0zypgwy8yxzp69c2775gkzi8591b0l3wncn7vmq11l16ign95fc7";
|
|
isLibrary = true;
|
|
isExecutable = true;
|
|
buildDepends = [ HDBC mtl time utf8String ];
|
|
extraLibraries = [ odbc ];
|
|
meta = {
|
|
homepage = "https://github.com/hdbc/hdbc-odbc";
|
|
description = "ODBC driver for HDBC";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
|
};
|
|
})
|