summary refs log tree commit diff
path: root/pkgs/data
diff options
context:
space:
mode:
authoraszlig <aszlig@redmoonstudios.org>2016-04-15 04:48:57 +0200
committeraszlig <aszlig@redmoonstudios.org>2016-04-15 05:26:02 +0200
commit9cfc8d94bb22000d1b648066c3d8b580f27d1271 (patch)
treed8ecc5e3224dfffd08980dd203a14483887b0af9 /pkgs/data
parentdbc1605deaeafc07c79cddf4d5e756074d8825b3 (diff)
downloadnixlib-9cfc8d94bb22000d1b648066c3d8b580f27d1271.tar
nixlib-9cfc8d94bb22000d1b648066c3d8b580f27d1271.tar.gz
nixlib-9cfc8d94bb22000d1b648066c3d8b580f27d1271.tar.bz2
nixlib-9cfc8d94bb22000d1b648066c3d8b580f27d1271.tar.lz
nixlib-9cfc8d94bb22000d1b648066c3d8b580f27d1271.tar.xz
nixlib-9cfc8d94bb22000d1b648066c3d8b580f27d1271.tar.zst
nixlib-9cfc8d94bb22000d1b648066c3d8b580f27d1271.zip
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 <aszlig@redmoonstudios.org>
Diffstat (limited to 'pkgs/data')
-rw-r--r--pkgs/data/documentation/zeal/default.nix2
1 files changed, 2 insertions, 0 deletions
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 = ''