From 59bc34d3e4d75feb575b0a597a9be201fb2bffc4 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Fri, 1 Jan 2021 22:03:25 +0100 Subject: [PATCH] psqueues: jailbreak to fix the build --- 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 d844aaed54c..71228a9cd99 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -1531,4 +1531,7 @@ self: super: { apecs-physics = addPkgconfigDepends super.apecs-physics (pkgs.lib.optional pkgs.stdenv.isDarwin pkgs.darwin.apple_sdk.frameworks.ApplicationServices); + # Break out of overspecified constraint on QuickCheck. + psqueues = doJailbreak super.psqueues; + } // import ./configuration-tensorflow.nix {inherit pkgs haskellLib;} self super