From c4d321494e993365621a9844e930f87df0d87a00 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Sun, 11 Aug 2019 18:47:46 +0200 Subject: [PATCH] haskell-hpack: disable the test suite to avoid build failures --- 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 2e54ef604a5..9f58d819bb0 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -1276,4 +1276,7 @@ self: super: { # need newer version of ghc-libparser hlint = super.hlint.override { ghc-lib-parser = self.ghc-lib-parser_8_8_0_20190723; }; + # https://github.com/sol/hpack/issues/366 + hpack = dontCheck super.hpack; + } // import ./configuration-tensorflow.nix {inherit pkgs haskellLib;} self super