Skip to content

Commit bff2ea5

Browse files
committedJun 23, 2017
haskell: fix logic error in generic builder introduced in 00892b7
Closes #26760. (cherry picked from commit 8ddaef6)
1 parent b049392 commit bff2ea5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎pkgs/development/haskell-modules/generic-builder.nix

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
, license
3535
, maintainers ? []
3636
, doCoverage ? false
37-
, doHaddock ? (!ghc.isHaLVM or true)
37+
, doHaddock ? !(ghc.isHaLVM or false)
3838
, passthru ? {}
3939
, pkgconfigDepends ? [], libraryPkgconfigDepends ? [], executablePkgconfigDepends ? [], testPkgconfigDepends ? [], benchmarkPkgconfigDepends ? []
4040
, testDepends ? [], testHaskellDepends ? [], testSystemDepends ? []

0 commit comments

Comments
 (0)
Please sign in to comment.