forked from mirrors/nixpkgs
haskellPackages.HDBCodbc: Do not build Haddocks
The Haddocks currently fail to build, which means that HDBC-ODBC cannot be install.
This commit is contained in:
parent
9d02e36ec7
commit
82265ee89d
|
@ -8,11 +8,15 @@ cabal.mkDerivation (self: {
|
|||
isExecutable = true;
|
||||
buildDepends = [ HDBC mtl time utf8String ];
|
||||
extraLibraries = [ odbc ];
|
||||
noHaddock = true; # Haddocks currently fail to build
|
||||
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 ];
|
||||
maintainers = [
|
||||
self.stdenv.lib.maintainers.andres
|
||||
self.stdenv.lib.maintainers.ocharles
|
||||
];
|
||||
};
|
||||
})
|
||||
|
|
Loading…
Reference in a new issue