about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2020-04-25 18:46:27 +0200
committerPeter Simons <simons@cryp.to>2020-04-25 19:45:08 +0200
commit53865f5f713ee112a9a9ffcfb23c8b14001c84ce (patch)
tree9d1e574cb790bbac265bdb6fcef2a389ca2c5f8c /pkgs
parentceab66bf6e474d48a85cc0deec54946a4ae4eb28 (diff)
downloadnixlib-53865f5f713ee112a9a9ffcfb23c8b14001c84ce.tar
nixlib-53865f5f713ee112a9a9ffcfb23c8b14001c84ce.tar.gz
nixlib-53865f5f713ee112a9a9ffcfb23c8b14001c84ce.tar.bz2
nixlib-53865f5f713ee112a9a9ffcfb23c8b14001c84ce.tar.lz
nixlib-53865f5f713ee112a9a9ffcfb23c8b14001c84ce.tar.xz
nixlib-53865f5f713ee112a9a9ffcfb23c8b14001c84ce.tar.zst
nixlib-53865f5f713ee112a9a9ffcfb23c8b14001c84ce.zip
haskell-hlint: fix build with ghc-8.10.1
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/haskell-modules/configuration-ghc-8.10.x.nix5
1 files changed, 5 insertions, 0 deletions
diff --git a/pkgs/development/haskell-modules/configuration-ghc-8.10.x.nix b/pkgs/development/haskell-modules/configuration-ghc-8.10.x.nix
index 70169cffffe6..942176f8d8f2 100644
--- a/pkgs/development/haskell-modules/configuration-ghc-8.10.x.nix
+++ b/pkgs/development/haskell-modules/configuration-ghc-8.10.x.nix
@@ -110,4 +110,9 @@ self: super: {
     sha256 = "0lhs4vx5qg5ldhnyb9z7k0jmxhmd2f34x4xbwv6vsljs9vr02pd8";
   });
 
+  # https://github.com/ndmitchell/hlint/issues/959
+  hlint = super.hlint.override {
+    ghc-lib-parser-ex = addBuildDepend super.ghc-lib-parser-ex super.ghc-lib-parser;
+  };
+
 }