nixpkgs-suyu/pkgs/development/libraries/qt-5/5.6/qttools.nix

11 lines
213 B
Nix
Raw Normal View History

{ qtSubmodule, qtbase, qtdeclarative }:
2016-05-03 01:50:19 +02:00
qtSubmodule {
name = "qttools";
qtInputs = [ qtbase qtdeclarative ];
2016-05-03 01:50:19 +02:00
postFixup = ''
moveToOutput "bin/qdbus" "$out"
moveToOutput "bin/qtpaths" "$out"
'';
}