qt5.qttools: install macdeployqt on darwin

+3 -1
+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" 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;