haskell: fix logic error in generic builder introduced in 00892b7e4e

Closes https://github.com/NixOS/nixpkgs/issues/26760.
This commit is contained in:
Peter Simons
2017-06-23 12:49:36 +02:00
parent d83fb640db
commit 8ddaef6ddf
@@ -34,7 +34,7 @@
, license
, maintainers ? []
, doCoverage ? false
, doHaddock ? (!ghc.isHaLVM or true)
, doHaddock ? !(ghc.isHaLVM or false)
, passthru ? {}
, pkgconfigDepends ? [], libraryPkgconfigDepends ? [], executablePkgconfigDepends ? [], testPkgconfigDepends ? [], benchmarkPkgconfigDepends ? []
, testDepends ? [], testHaskellDepends ? [], testSystemDepends ? []