From db6aeeae56e11fbe899e6d329203422cad77c51b Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Wed, 5 Dec 2018 20:45:32 +0100 Subject: [PATCH] haskell-json-autotype: disable the test suite 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 82542e6ac02..0d0eee11d5c 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -1195,4 +1195,7 @@ self: super: { # The test suite tries to mess with ALSA, which doesn't work in the build sandbox. xmobar = dontCheck super.xmobar; + # https://github.com/mgajda/json-autotype/issues/25 + json-autotype = dontCheck super.json-autotype; + } // import ./configuration-tensorflow.nix {inherit pkgs haskellLib;} self super