From 8968bff4614899fa0b851d33d72b5df8f97d2931 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Sun, 12 Feb 2017 14:08:26 +0100 Subject: [PATCH] haskell-case-insensitive: jailbreak to work around https://github.com/basvandijk/case-insensitive/issues/24 --- 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 87645b5abf0..0733a2ff31b 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -848,4 +848,7 @@ self: super: { # QuickCheck to versions ">=2.3 && <2.9". system-filepath = dontCheck super.system-filepath; + # https://github.com/basvandijk/case-insensitive/issues/24 + case-insensitive = doJailbreak super.case-insensitive; + }