From 519c8a640426cd6c61ffcb6aa0054818a2105ee2 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Fri, 12 Mar 2021 15:37:30 +0100 Subject: [PATCH] feed: disable test suite to fix the build The test suite does not compile. --- 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 cba2e5c452c..ad242777ec1 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -1658,4 +1658,7 @@ self: super: { }) ]; + # Test suite does not compile. + feed = dontCheck super.feed; + } // import ./configuration-tensorflow.nix {inherit pkgs haskellLib;} self super