17 lines
375 B
Nix
17 lines
375 B
Nix
|
{ qtSubmodule, qtbase }:
|
||
|
|
||
|
qtSubmodule {
|
||
|
name = "qttools";
|
||
|
qtInputs = [ qtbase ];
|
||
|
postFixup = ''
|
||
|
moveToOutput "bin/qdbus" "$out"
|
||
|
moveToOutput "bin/qtpaths" "$out"
|
||
|
|
||
|
fixQtModuleCMakeConfig "Designer"
|
||
|
fixQtModuleCMakeConfig "Help"
|
||
|
fixQtModuleCMakeConfig "LinguistTools"
|
||
|
fixQtModuleCMakeConfig "UiPlugin"
|
||
|
fixQtModuleCMakeConfig "UiTools"
|
||
|
'';
|
||
|
}
|