2017-10-24 12:39:54 +01:00
|
|
|
{ stdenv, lib }:
|
|
|
|
|
|
|
|
let inherit (lib) optional; in
|
|
|
|
|
|
|
|
{ debug }:
|
|
|
|
|
|
|
|
args:
|
|
|
|
|
|
|
|
let
|
|
|
|
args_ = {
|
|
|
|
|
2018-04-25 05:18:35 +01:00
|
|
|
qmakeFlags = [ ("CONFIG+=" + (if debug then "debug" else "release")) ]
|
|
|
|
++ (args.qmakeFlags or []);
|
2017-10-24 12:39:54 +01:00
|
|
|
|
2018-01-19 13:50:54 +00:00
|
|
|
NIX_CFLAGS_COMPILE =
|
2018-01-19 13:59:17 +00:00
|
|
|
optional (!debug) "-DQT_NO_DEBUG"
|
|
|
|
++ lib.toList (args.NIX_CFLAGS_COMPILE or []);
|
2018-01-02 13:16:38 +00:00
|
|
|
|
2017-10-24 12:39:54 +01:00
|
|
|
cmakeFlags =
|
|
|
|
(args.cmakeFlags or [])
|
2018-01-19 13:59:17 +00:00
|
|
|
++ [
|
|
|
|
("-DCMAKE_BUILD_TYPE=" + (if debug then "Debug" else "Release"))
|
|
|
|
];
|
2017-10-24 12:39:54 +01:00
|
|
|
|
2017-11-10 15:23:13 +00:00
|
|
|
enableParallelBuilding = args.enableParallelBuilding or true;
|
2017-10-24 12:39:54 +01:00
|
|
|
|
|
|
|
};
|
|
|
|
in
|
|
|
|
|
|
|
|
stdenv.mkDerivation (args // args_)
|