about summary refs log tree commit diff
path: root/pkgs/development/libraries/qt-5/5.8/qttools/default.nix
blob: 6b97c2d85cd26edecd57130e054cea309ba8c96d (plain) (blame)
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
{ stdenv, qtSubmodule, makeQtWrapper, copyPathsToStore, qtbase }:

with stdenv.lib;

qtSubmodule {
  name = "qttools";
  qtInputs = [ qtbase ];
  nativeBuildInputs = [ makeQtWrapper ];

  patches = copyPathsToStore (readPathsFromFile ./. ./series);
  postFixup = ''
    moveToOutput "bin/qdbus" "$out"
    moveToOutput "bin/qtpaths" "$out"
  '';

  postInstall =   ''
    wrapQtProgram $out/bin/qcollectiongenerator
    wrapQtProgram $out/bin/qhelpconverter
    wrapQtProgram $out/bin/qhelpgenerator
    wrapQtProgram $out/bin/qtdiag
  '' + optionalString (stdenv.isDarwin) ''
    wrapQtProgram $out/bin/Assistant.app/Contents/MacOS/Assistant
    wrapQtProgram $out/bin/Designer.app/Contents/MacOS/Designer
    wrapQtProgram $out/bin/Linguist.app/Contents/MacOS/Linguist
    wrapQtProgram $out/bin/pixeltool.app/Contents/MacOS/pixeltool
    wrapQtProgram $out/bin/qdbusviewer.app/Contents/MacOS/qdbusviewer
  '';
}