blob: fe2257159dd70d4496b613005f0121ab2b7876aa (
plain)
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
|
{
lib,
stdenv,
darwinVersionInputs,
cmake,
ninja,
perl,
moveBuildTree,
srcs,
patches ? [ ],
}:
args:
let
inherit (args) pname;
version = args.version or srcs.${pname}.version;
src = args.src or srcs.${pname}.src;
in
stdenv.mkDerivation (
args
// {
inherit pname version src;
patches = args.patches or patches.${pname} or [ ];
buildInputs =
args.buildInputs or [ ] ++ lib.optionals stdenv.hostPlatform.isDarwin darwinVersionInputs;
nativeBuildInputs =
(args.nativeBuildInputs or [ ])
++ [
cmake
ninja
perl
]
++ lib.optionals stdenv.hostPlatform.isDarwin [ moveBuildTree ];
propagatedBuildInputs =
(lib.warnIf (args ? qtInputs) "qt6.qtModule's qtInputs argument is deprecated" args.qtInputs or [ ])
++ (args.propagatedBuildInputs or [ ]);
cmakeFlags = [
# be more verbose
"--log-level=STATUS"
# don't leak OS version into the final output
# https://bugreports.qt.io/browse/QTBUG-136060
"-DCMAKE_SYSTEM_VERSION="
]
++ lib.optionals stdenv.hostPlatform.isDarwin [
"-DQT_NO_XCODE_MIN_VERSION_CHECK=ON"
# This is only used for the min version check, which we disabled above.
# When this variable is not set, cmake tries to execute xcodebuild
# to query the version.
"-DQT_INTERNAL_XCODE_VERSION=0.1"
]
++ args.cmakeFlags or [ ];
moveToDev = false;
outputs =
args.outputs or [
"out"
"dev"
];
separateDebugInfo = args.separateDebugInfo or true;
dontWrapQtApps = args.dontWrapQtApps or true;
}
)
// {
meta =
let
pos = builtins.unsafeGetAttrPos "pname" args;
in
{
homepage = "https://www.qt.io/";
description = "Cross-platform application framework for C++";
license = with lib.licenses; [
fdl13Plus
gpl2Plus
lgpl21Plus
lgpl3Plus
];
maintainers = with lib.maintainers; [
nickcao
];
platforms = lib.platforms.unix;
position = "${pos.file}:${toString pos.line}";
}
// (args.meta or { });
}
|