mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 23:36:17 +01:00
Merge pull request #1286 from ocharles/haskell-odbc
haskellPackages.HDBCodbc: Do not build Haddocks
This commit is contained in:
commit
469ce846c3
1 changed files with 5 additions and 1 deletions
|
@ -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