From 5c924ed7c5384bd92e9e1392ee617c2c0a49fbf9 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Fri, 27 Jul 2012 10:25:06 +0200 Subject: [PATCH] ikiwiki: fix test suite in the presence of enabled Git support --- pkgs/applications/misc/ikiwiki/default.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/applications/misc/ikiwiki/default.nix b/pkgs/applications/misc/ikiwiki/default.nix index f3fb575c6e57..35ce5478d90f 100644 --- a/pkgs/applications/misc/ikiwiki/default.nix +++ b/pkgs/applications/misc/ikiwiki/default.nix @@ -70,6 +70,11 @@ stdenv.mkDerivation { done ''; + preCheck = '' + # Git needs some help figuring this out during test suite run. + export EMAIL="nobody@example.org" + ''; + checkTarget = "test"; doCheck = true;