summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2020-01-24 20:37:27 +0100
committerPeter Simons <simons@cryp.to>2020-01-24 21:02:44 +0100
commitade7cc1fd396159c81e49354828fae58372225f8 (patch)
tree7dc9a7670613dde9a8649654be815b900043ba81 /pkgs/development
parent15aa9dd0a350227d0f2ee14e88e9244f65f3b7bc (diff)
downloadnixpkgs-ade7cc1fd396159c81e49354828fae58372225f8.tar
nixpkgs-ade7cc1fd396159c81e49354828fae58372225f8.tar.gz
nixpkgs-ade7cc1fd396159c81e49354828fae58372225f8.tar.bz2
nixpkgs-ade7cc1fd396159c81e49354828fae58372225f8.tar.lz
nixpkgs-ade7cc1fd396159c81e49354828fae58372225f8.tar.xz
nixpkgs-ade7cc1fd396159c81e49354828fae58372225f8.tar.zst
nixpkgs-ade7cc1fd396159c81e49354828fae58372225f8.zip
haskell-hlint: update override for new ghc-lib-parser-ex dependency
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/haskell-modules/configuration-common.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix
index 52b0f12d757..64a15e39689 100644
--- a/pkgs/development/haskell-modules/configuration-common.nix
+++ b/pkgs/development/haskell-modules/configuration-common.nix
@@ -1237,8 +1237,8 @@ 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_2; };
+  # Use a matching version of ghc-lib-parser.
+  ghc-lib-parser-ex = super.ghc-lib-parser-ex.override { ghc-lib-parser = self.ghc-lib-parser_8_8_2; };
 
   # https://github.com/sol/hpack/issues/366
   hpack = self.hpack_0_33_0;