From 7c75afaf1ab983091c9064576eaf793594f01058 Mon Sep 17 00:00:00 2001 From: Profpatsch Date: Mon, 19 Nov 2018 15:44:32 +0100 Subject: [PATCH] haskellPackages.libnix: dontCheck --- pkgs/development/haskell-modules/configuration-common.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index a49064d1665..ba95e8cced0 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -1183,4 +1183,11 @@ self: super: { # https://github.com/DanielG/cabal-helper/issues/59 cabal-helper = doJailbreak super.cabal-helper; + # TODO(Profpatsch): factor out local nix store setup from + # lib/tests/release.nix and use that for the tests of libnix + # libnix = overrideCabal super.libnix (old: { + # testToolDepends = old.testToolDepends or [] ++ [ pkgs.nix ]; + # }); + libnix = dontCheck super.libnix; + } // import ./configuration-tensorflow.nix {inherit pkgs haskellLib;} self super