2019-07-05 16:41:41 +01:00
|
|
|
{ lib, debug, wrapQtAppsHook }:
|
2017-10-24 12:39:54 +01:00
|
|
|
|
|
|
|
let inherit (lib) optional; in
|
|
|
|
|
2019-07-05 16:41:41 +01:00
|
|
|
mkDerivation:
|
2017-10-24 12:39:54 +01:00
|
|
|
|
|
|
|
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
|
|
|
|
2019-10-30 00:40:49 +00:00
|
|
|
NIX_CFLAGS_COMPILE = toString (
|
2018-01-19 13:59:17 +00:00
|
|
|
optional (!debug) "-DQT_NO_DEBUG"
|
2019-10-30 00:40:49 +00:00
|
|
|
++ 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
|
|
|
|
2019-07-05 16:41:41 +01:00
|
|
|
nativeBuildInputs = (args.nativeBuildInputs or []) ++ [ wrapQtAppsHook ];
|
|
|
|
|
2017-10-24 12:39:54 +01:00
|
|
|
};
|
|
|
|
in
|
|
|
|
|
2019-07-05 16:41:41 +01:00
|
|
|
mkDerivation (args // args_)
|