summary refs log tree commit diff
path: root/pkgs/development/libraries/qt-5/mkDerivation.nix
blob: ef105092fe2385d219d07b144580d04b00e9f7e3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{ stdenv, lib }:

let inherit (lib) optional; in

{ debug }:

args:

let
  args_ = {

    qmakeFlags =
      (args.qmakeFlags or [])
      ++ optional (debug != null)
          (if debug then "CONFIG+=debug" else "CONFIG+=release");

    cmakeFlags =
      (args.cmakeFlags or [])
      ++ [ "-DBUILD_TESTING=OFF" ]
      ++ optional (debug != null)
          (if debug then "-DCMAKE_BUILD_TYPE=Debug"
                    else "-DCMAKE_BUILD_TYPE=Release");

    enableParallelBuilding = args.enableParallelBuilding or false;

  };
in

stdenv.mkDerivation (args // args_)