From 9cfc8d94bb22000d1b648066c3d8b580f27d1271 Mon Sep 17 00:00:00 2001 From: aszlig Date: Fri, 15 Apr 2016 04:48:57 +0200 Subject: [PATCH] zeal: Fix running of {pre,post}Configure Commit 0055c6a introduced a new preConfigure hook that sets the right qmake path. Unfortunately the mkDerivation attributes of zeal override the whole configurePhase, so this hook isn't run at all. This fixes the build of zeal and it now successfully compiles on my machine. Signed-off-by: aszlig --- pkgs/data/documentation/zeal/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/data/documentation/zeal/default.nix b/pkgs/data/documentation/zeal/default.nix index 81be2dfb89be..dd681404e856 100644 --- a/pkgs/data/documentation/zeal/default.nix +++ b/pkgs/data/documentation/zeal/default.nix @@ -17,7 +17,9 @@ stdenv.mkDerivation rec { ]; configurePhase = '' + runHook preConfigure qmake PREFIX=/ + runHook postConfigure ''; installPhase = ''