From 4fa49984b113fd12c564ab792f27d5216020abd7 Mon Sep 17 00:00:00 2001 From: Deniz Alp Date: Sat, 26 Feb 2022 19:03:38 +0300 Subject: [PATCH] haskellPackages.map-syntax: Jailbreak to fix build --- pkgs/development/haskell-modules/configuration-common.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index 8842d6d260c1..1f941d828da5 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -69,6 +69,11 @@ self: super: { # Once that's out we can re-enable version checks. xmlhtml = doJailbreak super.xmlhtml; + # map-syntax has a restrictive upper bound on base, can be removed once + # > https://github.com/mightybyte/map-syntax/pull/14 + # is released. + map-syntax = doJailbreak super.map-syntax; + # This test keeps being aborted because it runs too quietly for too long Lazy-Pbkdf2 = if pkgs.stdenv.isi686 then dontCheck super.Lazy-Pbkdf2 else super.Lazy-Pbkdf2;