mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2025-01-06 04:24:28 +03:00
14 lines
300 B
Nix
14 lines
300 B
Nix
{ qtSubmodule, qtbase }:
|
|
|
|
qtSubmodule {
|
|
name = "qttools";
|
|
qtInputs = [ qtbase ];
|
|
postFixup = ''
|
|
fixQtModuleCMakeConfig "Designer"
|
|
fixQtModuleCMakeConfig "Help"
|
|
fixQtModuleCMakeConfig "LinguistTools"
|
|
fixQtModuleCMakeConfig "UiPlugin"
|
|
fixQtModuleCMakeConfig "UiTools"
|
|
'';
|
|
}
|