From a808b2d9320fbd270aa720646272c53f59d92bfc Mon Sep 17 00:00:00 2001 From: sternenseemann Date: Sun, 26 Dec 2021 14:02:41 +0100 Subject: [PATCH] haskellPackages.sdp: disable library profiling breaking 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 dd141625bbd0..e6c10f725116 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -2229,4 +2229,7 @@ self: super: { # Invalid CPP in test suite: https://github.com/cdornan/memory-cd/issues/1 memory-cd = dontCheck super.memory-cd; + # https://github.com/andreymulik/sdp/issues/3 + sdp = disableLibraryProfiling super.sdp; + } // import ./configuration-tensorflow.nix {inherit pkgs haskellLib;} self super