From 2a8e2ff1b9d8e9151cbcd5d0a3395c2e42b531c8 Mon Sep 17 00:00:00 2001 From: sternenseemann <0rpkxez4ksa01gb3typccl0i@systemli.org> Date: Fri, 2 Apr 2021 16:33:27 +0200 Subject: [PATCH] haskellPackages.fuzzyfind: unbreak --- 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 d9402f3bebb..cb6689ea624 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -1744,4 +1744,7 @@ self: super: { preConfigure = ''substituteInPlace iCalendar.cabal --replace "network >=2.6 && <2.7" "network -any"''; }; + # Too strict bounds on base: https://github.com/runarorama/fuzzyfind/issues/1 + fuzzyfind = doJailbreak super.fuzzyfind; + } // import ./configuration-tensorflow.nix {inherit pkgs haskellLib;} self super