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