repo.or.cz
/
NixPkgs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
mysql80: fix darwin and LLVM 19 build (#374591)
[NixPkgs.git]
/
pkgs
/
development
/
libraries
/
qt-5
/
modules
/
qtdeclarative.nix
blob
ad0465417dffe0c894d62ffc32e6393b86f5568f
1
{
2
qtModule,
3
python3,
4
qtbase,
5
qtsvg,
6
}:
7
8
qtModule {
9
pname = "qtdeclarative";
10
propagatedBuildInputs = [
11
qtbase
12
qtsvg
13
];
14
nativeBuildInputs = [ python3 ];
15
outputs = [
16
"out"
17
"dev"
18
"bin"
19
];
20
preConfigure = ''
21
NIX_CFLAGS_COMPILE+=" -DNIXPKGS_QML2_IMPORT_PREFIX=\"$qtQmlPrefix\""
22
'';
23
configureFlags = [ "-qml-debug" ];
24
devTools = [
25
"bin/qml"
26
"bin/qmlcachegen"
27
"bin/qmleasing"
28
"bin/qmlimportscanner"
29
"bin/qmllint"
30
"bin/qmlmin"
31
"bin/qmlplugindump"
32
"bin/qmlprofiler"
33
"bin/qmlscene"
34
"bin/qmltestrunner"
35
];
36
}