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