summary refs log tree commit diff
path: root/pkgs/development/haskell-modules/configuration-common.nix
diff options
context:
space:
mode:
authorsternenseemann <0rpkxez4ksa01gb3typccl0i@systemli.org>2021-04-02 16:56:23 +0200
committersternenseemann <0rpkxez4ksa01gb3typccl0i@systemli.org>2021-04-02 16:56:23 +0200
commite211dd2942fe32a0f22ffedf326b48b4aa03f8a1 (patch)
tree7a96c02f615ff474fb6ced53954e09b31c854272 /pkgs/development/haskell-modules/configuration-common.nix
parent2a8e2ff1b9d8e9151cbcd5d0a3395c2e42b531c8 (diff)
downloadnixpkgs-e211dd2942fe32a0f22ffedf326b48b4aa03f8a1.tar
nixpkgs-e211dd2942fe32a0f22ffedf326b48b4aa03f8a1.tar.gz
nixpkgs-e211dd2942fe32a0f22ffedf326b48b4aa03f8a1.tar.bz2
nixpkgs-e211dd2942fe32a0f22ffedf326b48b4aa03f8a1.tar.lz
nixpkgs-e211dd2942fe32a0f22ffedf326b48b4aa03f8a1.tar.xz
nixpkgs-e211dd2942fe32a0f22ffedf326b48b4aa03f8a1.tar.zst
nixpkgs-e211dd2942fe32a0f22ffedf326b48b4aa03f8a1.zip
haskellPackages.ginger: unbreak
Diffstat (limited to 'pkgs/development/haskell-modules/configuration-common.nix')
-rw-r--r--pkgs/development/haskell-modules/configuration-common.nix8
1 files changed, 8 insertions, 0 deletions
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