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