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 [])