about summary refs log tree commit diff
path: root/pkgs/development/libraries/qt-5/5.6/qttools.nix
blob: 4aeaea729a25c5f11bee405a828b4b9edab1bef7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
{ qtSubmodule, qtbase, qtdeclarative }:

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