haskell.packages.ghc865Binary.exceptions: fix the eval

Without the change the eval fails as:

$ nix build --no-link -f. haskell.packages.ghc865Binary.exceptions
error: attribute 'exceptions_0_10_9' missing
at pkgs/development/haskell-modules/configuration-ghc-8.6.x.nix:94:16:
93| # This became a core library in ghc 8.10., so we don’t have an "exception" attribute anymore.
94| exceptions = self.exceptions_0_10_9;
| ^
95|
Did you mean exceptions_0_10_10?

Changed files
+2 -2
pkgs
+1 -1
pkgs/development/haskell-modules/configuration-ghc-8.6.x.nix
···
some = addBuildDepend self.base-orphans super.some;
# This became a core library in ghc 8.10., so we don’t have an "exception" attribute anymore.
-
exceptions = self.exceptions_0_10_9;
+
exceptions = self.exceptions_0_10_10;
mime-string = disableOptimization super.mime-string;
}
+1 -1
pkgs/development/haskell-modules/configuration-ghcjs-8.x.nix
···
# GHCJS does not ship with the same core packages as GHC.
# https://github.com/ghcjs/ghcjs/issues/676
stm = doJailbreak self.stm_2_5_3_1;
-
exceptions = dontCheck self.exceptions_0_10_9;
+
exceptions = dontCheck self.exceptions_0_10_10;
## OTHER PACKAGES