tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
0
fork
atom
overview
issues
pulls
pipelines
GHCJS: Fix 8.4 build
Will Fancher
7 years ago
27a48b71
f8c229e1
+3
-1
1 changed file
expand all
collapse all
unified
split
pkgs
development
compilers
ghcjs-ng
8.4
dep-overrides.nix
+3
-1
pkgs/development/compilers/ghcjs-ng/8.4/dep-overrides.nix
···
2
3
let inherit (haskellLib) dontCheck doJailbreak;
4
in self: super: {
5
-
haddock-library-ghcjs = dontCheck super.haddock-library-ghcjs;
6
haddock-api-ghcjs = doJailbreak super.haddock-api-ghcjs;
0
0
7
}
···
2
3
let inherit (haskellLib) dontCheck doJailbreak;
4
in self: super: {
5
+
haddock-library-ghcjs = doJailbreak (dontCheck super.haddock-library-ghcjs);
6
haddock-api-ghcjs = doJailbreak super.haddock-api-ghcjs;
7
+
8
+
template-haskell-ghcjs = doJailbreak super.template-haskell-ghcjs;
9
}