about summary refs log tree commit diff
path: root/pkgs/development/haskell-modules
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2019-08-11 10:10:03 +0200
committerPeter Simons <simons@cryp.to>2019-08-11 20:48:10 +0200
commitca171ca0fac89c7b04cf4171b7381adaec8eb052 (patch)
tree8bd09257fc52a0493598ce0aeb739c431dcfd9d5 /pkgs/development/haskell-modules
parent35c6087e37d70da8d085e654344ac3363cdfe2d7 (diff)
downloadnixlib-ca171ca0fac89c7b04cf4171b7381adaec8eb052.tar
nixlib-ca171ca0fac89c7b04cf4171b7381adaec8eb052.tar.gz
nixlib-ca171ca0fac89c7b04cf4171b7381adaec8eb052.tar.bz2
nixlib-ca171ca0fac89c7b04cf4171b7381adaec8eb052.tar.lz
nixlib-ca171ca0fac89c7b04cf4171b7381adaec8eb052.tar.xz
nixlib-ca171ca0fac89c7b04cf4171b7381adaec8eb052.tar.zst
nixlib-ca171ca0fac89c7b04cf4171b7381adaec8eb052.zip
haskell-hlint: add version overrides to fix the build
Diffstat (limited to 'pkgs/development/haskell-modules')
-rw-r--r--pkgs/development/haskell-modules/configuration-common.nix3
1 files changed, 3 insertions, 0 deletions
diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix
index 9b124214c395..e7d82c1787ff 100644
--- a/pkgs/development/haskell-modules/configuration-common.nix
+++ b/pkgs/development/haskell-modules/configuration-common.nix
@@ -1281,4 +1281,7 @@ self: super: {
   # Test suite won't link for no apparent reason.
   constraints-deriving = dontCheck super.constraints-deriving;
 
+  # need newer version of ghc-libparser
+  hlint = super.hlint.override { ghc-lib-parser = self.ghc-lib-parser_8_8_0_20190723; };
+
 } // import ./configuration-tensorflow.nix {inherit pkgs haskellLib;} self super