From fab7c7edbf5ad756b60c975dd6c4fd0362719e13 Mon Sep 17 00:00:00 2001 From: aszlig Date: Fri, 15 Apr 2016 04:33:26 +0200 Subject: [PATCH] twmn: Fix running of {pre,post}Configure Commit 0055c6a introduced a new preConfigure hook that sets the right qmake path. Unfortunately the mkDerivation attributes of twmn override the whole configurePhase, so this hook isn't run at all. This fixes the build of twmn and it now successfully compiles on my machine. Signed-off-by: aszlig --- pkgs/applications/misc/twmn/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/applications/misc/twmn/default.nix b/pkgs/applications/misc/twmn/default.nix index bb3f359ab8ff..fbbf45877d23 100644 --- a/pkgs/applications/misc/twmn/default.nix +++ b/pkgs/applications/misc/twmn/default.nix @@ -12,8 +12,10 @@ stdenv.mkDerivation rec { buildInputs = [ qtbase qtx11extras pkgconfig boost ]; configurePhase = '' + runHook preConfigure sed -i s/-Werror// twmnd/twmnd.pro qmake + runHook postConfigure ''; installPhase = ''