From ca171ca0fac89c7b04cf4171b7381adaec8eb052 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Sun, 11 Aug 2019 10:10:03 +0200 Subject: [PATCH] haskell-hlint: add version overrides to fix the build --- pkgs/development/haskell-modules/configuration-common.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index 9b124214c39..e7d82c1787f 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