From 9de1b1b7aca0fd8a19b7585620ab37ff137f0cd6 Mon Sep 17 00:00:00 2001 From: "(cdep)illabout" Date: Sat, 2 Jan 2021 11:51:00 +0900 Subject: [PATCH] haskellPackages.nix-derivation: jailbreak for 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 65f4c4db58c..04ac84ad8dd 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -1538,4 +1538,8 @@ self: super: { # https://github.com/haskell/attoparsec/pull/168 attoparsec = doJailbreak super.attoparsec; + # Break out of overspecified constraint on QuickCheck. + # https://github.com/Gabriel439/Haskell-Nix-Derivation-Library/pull/10 + nix-derivation = doJailbreak super.nix-derivation; + } // import ./configuration-tensorflow.nix {inherit pkgs haskellLib;} self super