tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
qt5.qttools: install macdeployqt on darwin
Orivej Desh
8 years ago
fb349c84
13acbeae
+3
-1
1 changed file
expand all
collapse all
unified
split
pkgs
development
libraries
qt-5
modules
qttools.nix
+3
-1
pkgs/development/libraries/qt-5/modules/qttools.nix
···
1
-
{ qtModule, lib, qtbase }:
2
3
with lib;
4
···
28
"bin/qhelpgenerator"
29
"bin/qtplugininfo"
30
"bin/qthelpconverter"
0
0
31
];
32
33
setupHook = ../hooks/qttools-setup-hook.sh;
···
1
+
{ qtModule, stdenv, lib, qtbase }:
2
3
with lib;
4
···
28
"bin/qhelpgenerator"
29
"bin/qtplugininfo"
30
"bin/qthelpconverter"
31
+
] ++ optionals stdenv.isDarwin [
32
+
"bin/macdeployqt"
33
];
34
35
setupHook = ../hooks/qttools-setup-hook.sh;