From 3e0513ea866f6844c17fcf11b31776c63bb169cc Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Sun, 31 May 2015 10:29:50 +0200 Subject: [PATCH] haskell-cabal-helper wants to store test suite data in $HOME --- pkgs/development/haskell-modules/configuration-common.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index eb2c1e7c9c0..a54ffc72a50 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -832,4 +832,8 @@ self: super: { # https://github.com/vincenthz/hs-cipher-aes/issues/35 cipher-aes = dontCheck super.cipher-aes; + + # https://github.com/DanielG/cabal-helper/issues/2 + cabal-helper = overrideCabal super.cabal-helper (drv: { preCheck = "export HOME=$TMPDIR"; }); + }