{ stdenv, lib }: let inherit (lib) optional; in { debug }: args: let args_ = { qmakeFlags = (args.qmakeFlags or []) ++ [ ("CONFIG+=" + (if debug then "debug" else "release")) ]; NIX_CFLAGS_COMPILE = optional (!debug) "-DQT_NO_DEBUG" ++ lib.toList (args.NIX_CFLAGS_COMPILE or []); cmakeFlags = (args.cmakeFlags or []) ++ [ "-DBUILD_TESTING=OFF" ("-DCMAKE_BUILD_TYPE=" + (if debug then "Debug" else "Release")) ]; enableParallelBuilding = args.enableParallelBuilding or true; }; in stdenv.mkDerivation (args // args_)