Skip to content

Commit b1f5c64

Browse files
committed
haskell.packages.ghcjs.exceptions: fix eval
Without the change the eval fails as: $ nix build --no-link -f. haskell.packages.ghcjs.exceptions error: … in the left operand of the update (//) operator at pkgs/development/haskell-modules/lib/compose.nix:40:7: 39| mkDerivation = drv: (args.mkDerivation drv).override f; 40| })) // { | ^ 41| overrideScope = scope: overrideCabal f (drv.overrideScope scope); error: attribute 'exceptions_0_10_7' missing at pkgs/development/haskell-modules/configuration-ghcjs.nix:30:26: 29| stm = doJailbreak self.stm_2_5_3_1; 30| exceptions = dontCheck self.exceptions_0_10_7; | ^ 31| Did you mean exceptions_0_10_8?
1 parent 7d41da6 commit b1f5c64

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

pkgs/development/haskell-modules/configuration-ghcjs.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ self: super:
2727
# GHCJS does not ship with the same core packages as GHC.
2828
# https://github.com/ghcjs/ghcjs/issues/676
2929
stm = doJailbreak self.stm_2_5_3_1;
30-
exceptions = dontCheck self.exceptions_0_10_7;
30+
exceptions = dontCheck self.exceptions_0_10_8;
3131

3232
## OTHER PACKAGES
3333

0 commit comments

Comments
 (0)