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

qtSubmodule {
  name = "qttools";
  qtInputs = [ qtbase ];
  patches = copyPathsToStore (lib.readPathsFromFile ./. ./series);
  postFixup = ''
    moveToOutput "bin/qdbus" "$out"
    moveToOutput "bin/qtpaths" "$out"
  '';
}