From 0cfff33f59131ec124b0e1c0de2a8a69ef4af896 Mon Sep 17 00:00:00 2001 From: aszlig Date: Fri, 15 Apr 2016 04:32:30 +0200 Subject: [PATCH] qtpass: Fix running of {pre,post}Configure Commit 0055c6a introduced a new preConfigure hook that sets the right qmake path. Unfortunately the mkDerivation attributes of qtpass override the whole configurePhase, so this hook isn't run at all. This fixes the build of qtpass and it now successfully compiles on my machine. Signed-off-by: aszlig --- pkgs/applications/misc/qtpass/default.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/pkgs/applications/misc/qtpass/default.nix b/pkgs/applications/misc/qtpass/default.nix index 08e7f834d6b..69730759d08 100644 --- a/pkgs/applications/misc/qtpass/default.nix +++ b/pkgs/applications/misc/qtpass/default.nix @@ -11,7 +11,11 @@ stdenv.mkDerivation rec { buildInputs = [ git gnupg makeQtWrapper pass qtbase qtsvg qttools ]; - configurePhase = "qmake CONFIG+=release PREFIX=$out DESTDIR=$out"; + configurePhase = '' + runHook preConfigure + qmake CONFIG+=release PREFIX=$out DESTDIR=$out + runHook postConfigure + ''; installPhase = '' mkdir $out/bin