nixpkgs/pkgs/development/libraries/qt-5/5.5/qttools/default.nix

12 lines
274 B
Nix
Raw Normal View History

2016-08-08 06:29:20 -07:00
{ qtSubmodule, lib, copyPathsToStore, qtbase }:
2015-09-27 07:46:48 -07:00
qtSubmodule {
name = "qttools";
qtInputs = [ qtbase ];
2016-08-08 06:29:20 -07:00
patches = copyPathsToStore (lib.readPathsFromFile ./. ./series);
postFixup = ''
moveToOutput "bin/qdbus" "$out"
moveToOutput "bin/qtpaths" "$out"
'';
2015-09-27 07:46:48 -07:00
}