From e211dd2942fe32a0f22ffedf326b48b4aa03f8a1 Mon Sep 17 00:00:00 2001 From: sternenseemann <0rpkxez4ksa01gb3typccl0i@systemli.org> Date: Fri, 2 Apr 2021 16:56:23 +0200 Subject: [PATCH] haskellPackages.ginger: unbreak --- pkgs/development/haskell-modules/configuration-common.nix | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index cb6689ea624..c5264639277 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -1747,4 +1747,12 @@ self: super: { # Too strict bounds on base: https://github.com/runarorama/fuzzyfind/issues/1 fuzzyfind = doJailbreak super.fuzzyfind; + # Apply patch from master relaxing the version bounds on tasty. + # Can be removed at next release (current is 0.10.1.0). + ginger = appendPatch super.ginger + (pkgs.fetchpatch { + url = "https://github.com/tdammers/ginger/commit/bd8cb39c1853d4fb4f663c4c201884575906acea.patch"; + sha256 = "1rdy53k0384g52bnc59j1f0i13hr4lbnbksfsabr4av6zmw9wmzf"; + }); + } // import ./configuration-tensorflow.nix {inherit pkgs haskellLib;} self super