From c1720b412b955fa7739f880738a3284a2d5b4460 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Fri, 19 Jan 2018 07:50:54 -0600 Subject: [PATCH 1/2] qt5.mkDerivation: honor argument NIX_CFLAGS_COMPILE MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit If ‘mkDerivation’ is passed ‘NIX_CFLAGS_COMPILE’, we should include those flags along with the common flags. See also: #34039 #34038 #33935 #33933 #33930 #33927 --- pkgs/development/libraries/qt-5/mkDerivation.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pkgs/development/libraries/qt-5/mkDerivation.nix b/pkgs/development/libraries/qt-5/mkDerivation.nix index 97bd09c327b..616c96a21fb 100644 --- a/pkgs/development/libraries/qt-5/mkDerivation.nix +++ b/pkgs/development/libraries/qt-5/mkDerivation.nix @@ -14,7 +14,10 @@ let ++ optional (debug != null) (if debug then "CONFIG+=debug" else "CONFIG+=release"); - NIX_CFLAGS_COMPILE = optional (debug != null) "-DQT_NO_DEBUG"; + NIX_CFLAGS_COMPILE = + let arg = args.NIX_CFLAGS_COMPILE or []; in + optional (debug == true) "-DQT_NO_DEBUG" + ++ (if builtins.isList arg then arg else [arg]); cmakeFlags = (args.cmakeFlags or []) From 4a39533ab3a67c52e0b896188e09bec76d9ffab8 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Fri, 19 Jan 2018 07:59:17 -0600 Subject: [PATCH 2/2] qt5: debug flag should never be null --- pkgs/development/libraries/qt-5/5.10/default.nix | 2 +- pkgs/development/libraries/qt-5/5.6/default.nix | 2 +- pkgs/development/libraries/qt-5/5.9/default.nix | 2 +- pkgs/development/libraries/qt-5/mkDerivation.nix | 16 +++++++--------- 4 files changed, 10 insertions(+), 12 deletions(-) diff --git a/pkgs/development/libraries/qt-5/5.10/default.nix b/pkgs/development/libraries/qt-5/5.10/default.nix index d65eeef65f4..cf66e60d569 100644 --- a/pkgs/development/libraries/qt-5/5.10/default.nix +++ b/pkgs/development/libraries/qt-5/5.10/default.nix @@ -24,7 +24,7 @@ top-level attribute to `top-level/all-packages.nix`. # options developerBuild ? false, decryptSslTraffic ? false, - debug ? null, + debug ? false, }: with stdenv.lib; diff --git a/pkgs/development/libraries/qt-5/5.6/default.nix b/pkgs/development/libraries/qt-5/5.6/default.nix index 9ad5af8eecd..1200884a30c 100644 --- a/pkgs/development/libraries/qt-5/5.6/default.nix +++ b/pkgs/development/libraries/qt-5/5.6/default.nix @@ -33,7 +33,7 @@ existing packages here and modify it as necessary. # options developerBuild ? false, decryptSslTraffic ? false, - debug ? null, + debug ? false, }: with stdenv.lib; diff --git a/pkgs/development/libraries/qt-5/5.9/default.nix b/pkgs/development/libraries/qt-5/5.9/default.nix index 7bf61c98086..9afa818c36e 100644 --- a/pkgs/development/libraries/qt-5/5.9/default.nix +++ b/pkgs/development/libraries/qt-5/5.9/default.nix @@ -24,7 +24,7 @@ top-level attribute to `top-level/all-packages.nix`. # options developerBuild ? false, decryptSslTraffic ? false, - debug ? null, + debug ? false, }: with stdenv.lib; diff --git a/pkgs/development/libraries/qt-5/mkDerivation.nix b/pkgs/development/libraries/qt-5/mkDerivation.nix index 616c96a21fb..739c9b4a160 100644 --- a/pkgs/development/libraries/qt-5/mkDerivation.nix +++ b/pkgs/development/libraries/qt-5/mkDerivation.nix @@ -11,20 +11,18 @@ let qmakeFlags = (args.qmakeFlags or []) - ++ optional (debug != null) - (if debug then "CONFIG+=debug" else "CONFIG+=release"); + ++ [ ("CONFIG+=" + (if debug then "debug" else "release")) ]; NIX_CFLAGS_COMPILE = - let arg = args.NIX_CFLAGS_COMPILE or []; in - optional (debug == true) "-DQT_NO_DEBUG" - ++ (if builtins.isList arg then arg else [arg]); + optional (!debug) "-DQT_NO_DEBUG" + ++ lib.toList (args.NIX_CFLAGS_COMPILE or []); cmakeFlags = (args.cmakeFlags or []) - ++ [ "-DBUILD_TESTING=OFF" ] - ++ optional (debug != null) - (if debug then "-DCMAKE_BUILD_TYPE=Debug" - else "-DCMAKE_BUILD_TYPE=Release"); + ++ [ + "-DBUILD_TESTING=OFF" + ("-DCMAKE_BUILD_TYPE=" + (if debug then "Debug" else "Release")) + ]; enableParallelBuilding = args.enableParallelBuilding or true;