Haskell generic builder: enable parallel builds for GHC 8.0.2

This reverts https://github.com/NixOS/nixpkgs/pull/4554
This commit is contained in:
Domen Kožar 2016-12-16 21:18:20 +01:00
parent 0e8e4a08f3
commit d0250ad884

View file

@ -114,6 +114,7 @@ let
(optionalString (isGhcjs || versionOlder "7" ghc.version) (enableFeature enableStaticLibraries "library-vanilla"))
(optionalString (isGhcjs || versionOlder "7.4" ghc.version) (enableFeature enableSharedExecutables "executable-dynamic"))
(optionalString (isGhcjs || versionOlder "7" ghc.version) (enableFeature doCheck "tests"))
(optionalString (versionOlder "8.0.1" ghc.version) "--ghc-option=-j$NIX_BUILD_CORES")
] ++ optionals isGhcjs [
"--with-hsc2hs=${nativeGhc}/bin/hsc2hs"
"--ghcjs"