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

with stdenv.lib;

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

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