nixpkgs/pkgs/development/libraries/qt-5/5.7/qttools.nix
2016-07-29 17:46:13 -05:00

10 lines
213 B
Nix

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