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