about summary refs log tree commit diff
path: root/pkgs/development/haskell-modules
diff options
context:
space:
mode:
authorSergei Trofimovich <slyich@gmail.com>2024-01-02 17:12:22 +0000
committerSergei Trofimovich <slyich@gmail.com>2024-01-03 10:40:57 +0000
commit99a8b82c3e79141885a02ad0b7d259ef40c9ff4f (patch)
tree924c7d040fc2b84122aeae7270f342449f585065 /pkgs/development/haskell-modules
parent9ee264e4b9f53e8ae10b02c73af4126925423f82 (diff)
downloadnixlib-99a8b82c3e79141885a02ad0b7d259ef40c9ff4f.tar
nixlib-99a8b82c3e79141885a02ad0b7d259ef40c9ff4f.tar.gz
nixlib-99a8b82c3e79141885a02ad0b7d259ef40c9ff4f.tar.bz2
nixlib-99a8b82c3e79141885a02ad0b7d259ef40c9ff4f.tar.lz
nixlib-99a8b82c3e79141885a02ad0b7d259ef40c9ff4f.tar.xz
nixlib-99a8b82c3e79141885a02ad0b7d259ef40c9ff4f.tar.zst
nixlib-99a8b82c3e79141885a02ad0b7d259ef40c9ff4f.zip
haskell.packages.ghc865Binary.exceptions: restore package, use 0.10.7 version
In https://github.com/NixOS/nixpkgs/pull/278074 I removed `exception`
completely. But `nixpkgs` has a version of `exceptions we could use.
Let's enable that instead.

Co-authored-by: Dennis Gosnell <cdep.illabout@gmail.com>
Diffstat (limited to 'pkgs/development/haskell-modules')
-rw-r--r--pkgs/development/haskell-modules/configuration-ghc-8.6.x.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/haskell-modules/configuration-ghc-8.6.x.nix b/pkgs/development/haskell-modules/configuration-ghc-8.6.x.nix
index c6b48129b6b4..d3b7d11ef93f 100644
--- a/pkgs/development/haskell-modules/configuration-ghc-8.6.x.nix
+++ b/pkgs/development/haskell-modules/configuration-ghc-8.6.x.nix
@@ -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 = null;
+  exceptions = self.exceptions_0_10_7;
 
   # Older compilers need the latest ghc-lib to build this package.
   hls-hlint-plugin = addBuildDepend self.ghc-lib super.hls-hlint-plugin;