From 9c32d185d12f48a996b9b4fb3999c41d7445e548 Mon Sep 17 00:00:00 2001 From: Shea Levy Date: Thu, 16 Aug 2018 15:34:53 -0400 Subject: [PATCH] haskellPackages.hasktags: Disable broken testsuite. https://github.com/MarcWeber/hasktags/issues/52 --- pkgs/development/haskell-modules/configuration-common.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index eeeacc0d224..20e228a4365 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -1120,4 +1120,6 @@ self: super: { # Can be removed once yi-language >= 0.18 is in the LTS yi-core = super.yi-core.override { yi-language = self.yi-language_0_18_0; }; + # https://github.com/MarcWeber/hasktags/issues/52 + hasktags = dontCheck super.hasktags; } // import ./configuration-tensorflow.nix {inherit pkgs haskellLib;} self super