From 37de16cab72cb9cd8f31b3ee776eeab982110d54 Mon Sep 17 00:00:00 2001 From: sternenseemann Date: Thu, 8 Dec 2022 01:00:29 +0100 Subject: [PATCH] haskellPackages.jack: allow bytestring 0.11 --- 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 9c808b165c05..f5e077568ac2 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -66,6 +66,10 @@ self: super: { # > https://github.com/roelvandijk/numerals numerals = doJailbreak (dontCheck super.numerals); + # Too strict upper bound on bytestring + # 2022-12-07: emailed maintainer about this + jack = doJailbreak super.jack; + # 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;