haskell.packages.ghc865Binary.exceptions: fix eval
Without the change the eval fails as: $ nix build --no-link -f. haskell.packages.ghc865Binary.exceptions error: attribute 'exceptions_0_10_7' missing at pkgs/development/haskell-modules/configuration-ghc-8.6.x.nix:98:16: 97| # This became a core library in ghc 8.10., so we don’t have an "exception" attribute anymore. 98| exceptions = self.exceptions_0_10_7; | ^ 99| Did you mean exceptions_0_10_8?
This commit is contained in:
parent
7d41da6c40
commit
8b65aca289
@ -95,7 +95,7 @@ self: super: {
|
||||
ghc-lib-parser-ex = addBuildDepend self.ghc-lib-parser super.ghc-lib-parser-ex;
|
||||
|
||||
# This became a core library in ghc 8.10., so we don’t have an "exception" attribute anymore.
|
||||
exceptions = self.exceptions_0_10_7;
|
||||
exceptions = self.exceptions_0_10_8;
|
||||
|
||||
# vector 0.12.2 indroduced doctest checks that don’t work on older compilers
|
||||
vector = dontCheck super.vector;
|
||||
|
Loading…
Reference in New Issue
Block a user