From a07cc456bc91bd67d7726a71c9ecc4a638d26893 Mon Sep 17 00:00:00 2001 From: Shea Levy Date: Fri, 17 Aug 2018 09:02:24 -0400 Subject: [PATCH] haskellPackages.hoopl: Disable broken testsuite. https://github.com/haskell/hoopl/issues/50 --- 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 20e228a4365..86a381e5815 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -1122,4 +1122,7 @@ self: super: { # https://github.com/MarcWeber/hasktags/issues/52 hasktags = dontCheck super.hasktags; + + # https://github.com/haskell/hoopl/issues/50 + hoopl = dontCheck super.hoopl; } // import ./configuration-tensorflow.nix {inherit pkgs haskellLib;} self super