From b06de887f7c34090ac381d23db47749c529bd60d Mon Sep 17 00:00:00 2001 From: "William R. Arellano" Date: Tue, 12 Nov 2019 08:09:27 -0500 Subject: [PATCH] dotenv: fix broken package version 0.8.0.2 --- pkgs/development/haskell-modules/configuration-nix.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pkgs/development/haskell-modules/configuration-nix.nix b/pkgs/development/haskell-modules/configuration-nix.nix index 5308296c833..909accb9a97 100644 --- a/pkgs/development/haskell-modules/configuration-nix.nix +++ b/pkgs/development/haskell-modules/configuration-nix.nix @@ -624,5 +624,7 @@ self: super: builtins.intersectAttrs super { # need it during the build itself, too. cairo = addBuildTool super.cairo self.buildHaskellPackages.gtk2hs-buildtools; pango = disableHardening (addBuildTool super.pango self.buildHaskellPackages.gtk2hs-buildtools) ["fortify"]; - + + # Tests fails because of missing test file + dotenv = dontCheck super.dotenv; }