From d834fc7d630ff6361fd006cb61c9277dc75500f8 Mon Sep 17 00:00:00 2001 From: Richard Marko Date: Mon, 27 Jul 2020 10:32:51 +0200 Subject: [PATCH] haskellPackages.zre: use repline_0_4_0_0 --- pkgs/development/haskell-modules/configuration-common.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index dc5ce78461d..578db07300a 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -1454,4 +1454,11 @@ self: super: { # Testsuite trying to run `which haskeline-examples-Test` haskeline_0_8_0_0 = dontCheck super.haskeline_0_8_0_0; + # Requires repline 0.4 which is the default only for ghc8101, override for the rest + zre = super.zre.override { + repline = self.repline_0_4_0_0.override { + haskeline = self.haskeline_0_8_0_0; + }; + }; + } // import ./configuration-tensorflow.nix {inherit pkgs haskellLib;} self super