From 8f6e4a32872b08e75a004811ada4f54247bd5087 Mon Sep 17 00:00:00 2001 From: "(cdep)illabout" Date: Sat, 2 Jan 2021 11:18:46 +0900 Subject: [PATCH] haskellPackages.attoparsec: jailbreak because of new version of Quickcheck --- pkgs/development/haskell-modules/configuration-common.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index 71228a9cd99..65f4c4db58c 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -1534,4 +1534,8 @@ self: super: { # Break out of overspecified constraint on QuickCheck. psqueues = doJailbreak super.psqueues; + # Break out of overspecified constraint on QuickCheck. + # https://github.com/haskell/attoparsec/pull/168 + attoparsec = doJailbreak super.attoparsec; + } // import ./configuration-tensorflow.nix {inherit pkgs haskellLib;} self super