From b07e9851b7b3ab0f4c36c8f4867223522dc20c00 Mon Sep 17 00:00:00 2001 From: sternenseemann Date: Sun, 26 Dec 2021 14:02:27 +0100 Subject: [PATCH] haskellPackages.memory-cd: work around compilation failure in 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 498d09c9a90d..dd141625bbd0 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -2226,4 +2226,7 @@ self: super: { # hpack emits its version into the generated files… hpack-dhall = assert super.hpack-dhall.version == "0.5.3"; dontCheck super.hpack-dhall; + # Invalid CPP in test suite: https://github.com/cdornan/memory-cd/issues/1 + memory-cd = dontCheck super.memory-cd; + } // import ./configuration-tensorflow.nix {inherit pkgs haskellLib;} self super