about summary refs log tree commit diff
path: root/pkgs/development/libraries/qt-5/modules
diff options
context:
space:
mode:
authorOrivej Desh <orivej@gmx.fr>2017-12-20 06:06:35 +0000
committerOrivej Desh <orivej@gmx.fr>2017-12-20 08:56:54 +0000
commitfb349c84e2ccdbf45ef3430392927586b76f4ed9 (patch)
treeb14a6480b83554608b33f9d5ede0cf04b299ecb1 /pkgs/development/libraries/qt-5/modules
parent13acbeae0ba6b1b69e0cf5de8af79fd449d8b691 (diff)
downloadnixlib-fb349c84e2ccdbf45ef3430392927586b76f4ed9.tar
nixlib-fb349c84e2ccdbf45ef3430392927586b76f4ed9.tar.gz
nixlib-fb349c84e2ccdbf45ef3430392927586b76f4ed9.tar.bz2
nixlib-fb349c84e2ccdbf45ef3430392927586b76f4ed9.tar.lz
nixlib-fb349c84e2ccdbf45ef3430392927586b76f4ed9.tar.xz
nixlib-fb349c84e2ccdbf45ef3430392927586b76f4ed9.tar.zst
nixlib-fb349c84e2ccdbf45ef3430392927586b76f4ed9.zip
qt5.qttools: install macdeployqt on darwin
Diffstat (limited to 'pkgs/development/libraries/qt-5/modules')
-rw-r--r--pkgs/development/libraries/qt-5/modules/qttools.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/pkgs/development/libraries/qt-5/modules/qttools.nix b/pkgs/development/libraries/qt-5/modules/qttools.nix
index ae6bd18cb148..622d841b4051 100644
--- a/pkgs/development/libraries/qt-5/modules/qttools.nix
+++ b/pkgs/development/libraries/qt-5/modules/qttools.nix
@@ -1,4 +1,4 @@
-{ qtModule, lib, qtbase }:
+{ qtModule, stdenv, lib, qtbase }:
 
 with lib;
 
@@ -28,6 +28,8 @@ qtModule {
     "bin/qhelpgenerator"
     "bin/qtplugininfo"
     "bin/qthelpconverter"
+  ] ++ optionals stdenv.isDarwin [
+    "bin/macdeployqt"
   ];
 
   setupHook = ../hooks/qttools-setup-hook.sh;