ghcjs: fix build
We need to hold back some packages, now that ghc 8 is out
This commit is contained in:
@@ -74874,6 +74874,27 @@ self: {
|
||||
license = stdenv.lib.licenses.mit;
|
||||
}) {};
|
||||
|
||||
"haddock_2_16_1" = callPackage
|
||||
({ mkDerivation, base, Cabal, directory, filepath, haddock-api
|
||||
, process
|
||||
}:
|
||||
mkDerivation {
|
||||
pname = "haddock";
|
||||
version = "2.16.1";
|
||||
sha256 = "46ecd130cb5ad2b5c7452c843f9b75e976f1416d1cf17e6436d65c2c0bdbd6d6";
|
||||
isLibrary = false;
|
||||
isExecutable = true;
|
||||
executableHaskellDepends = [ base haddock-api ];
|
||||
testHaskellDepends = [ base Cabal directory filepath process ];
|
||||
jailbreak = true;
|
||||
doCheck = false;
|
||||
preCheck = "unset GHC_PACKAGE_PATH";
|
||||
homepage = "http://www.haskell.org/haddock/";
|
||||
description = "A documentation-generation tool for Haskell libraries";
|
||||
license = stdenv.lib.licenses.bsd3;
|
||||
hydraPlatforms = stdenv.lib.platforms.none;
|
||||
}) {};
|
||||
|
||||
"haddock" = callPackage
|
||||
({ mkDerivation, base, filepath, haddock-api, hspec }:
|
||||
mkDerivation {
|
||||
|
||||
Reference in New Issue
Block a user