From 1bf1a3556a74fdb8f2cb9afae3bcfaee04536062 Mon Sep 17 00:00:00 2001 From: Malte Brandy Date: Wed, 18 Aug 2021 10:22:35 +0200 Subject: [PATCH] haskellPackages.streamly-posix: jailbreak to fix tests --- 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 e54a745e2df6..59e95dcc3d77 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -1939,4 +1939,7 @@ EOT # ghc-api-compat needlessly requires 8.10.5 exactly, but we have 8.10.6 ghc-api-compat = doJailbreak super.ghc-api-compat; + # 2021-08-18: streamly-posix was released with hspec 2.8.2, but it works with older versions too. + streamly-posix = doJailbreak super.streamly-posix; + } // import ./configuration-tensorflow.nix {inherit pkgs haskellLib;} self super