From 76e284fc60f23cca8b871ef813155636e865b102 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Fri, 14 Dec 2018 17:40:17 +0100 Subject: [PATCH] haskell-hoogle: override haskell-src-exts to the latest version (as required) --- pkgs/development/haskell-modules/configuration-common.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index dfb70efd445..28d5e50e96f 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -1204,7 +1204,8 @@ self: super: { # https://github.com/kazu-yamamoto/iproute/issues/43 appar = self.appar_0_1_7; - # The LTS-12.x version doesn't suffice to build hlint. + # The LTS-12.x version doesn't suffice to build hlint, hoogle, etc. hlint = super.hlint.overrideScope (self: super: { haskell-src-exts = self.haskell-src-exts_1_21_0; }); + hoogle = super.hoogle.overrideScope (self: super: { haskell-src-exts = self.haskell-src-exts_1_21_0; }); } // import ./configuration-tensorflow.nix {inherit pkgs haskellLib;} self super