nixpkgs/pkgs/development/libraries/qt-5/5.6/qttools.nix
2016-05-11 10:19:28 -05:00

11 lines
213 B
Nix

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