about summary refs log tree commit diff
path: root/pkgs/development/libraries/qt-5/5.4/qttools.nix
blob: 16887c4265a81683b2d1e88c107b0dbafd6b19c2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ qtSubmodule, qtbase }:

qtSubmodule {
  name = "qttools";
  qtInputs = [ qtbase ];
  postFixup = ''
    moveToOutput "bin/qdbus" "$out"
    moveToOutput "bin/qtpaths" "$out"

    fixQtModuleCMakeConfig "Designer"
    fixQtModuleCMakeConfig "Help"
    fixQtModuleCMakeConfig "LinguistTools"
    fixQtModuleCMakeConfig "UiTools"
  '';
}