11 lines
213 B
Nix
Raw Normal View History

2016-07-29 16:33:02 -05:00
{ qtSubmodule, qtbase, qtdeclarative }:
qtSubmodule {
name = "qttools";
qtInputs = [ qtbase qtdeclarative ];
postFixup = ''
moveToOutput "bin/qdbus" "$out"
moveToOutput "bin/qtpaths" "$out"
'';
}