10 lines
157 B
Nix
10 lines
157 B
Nix
{ qtSubmodule, qtbase }:
|
|
|
|
qtSubmodule {
|
|
name = "qtxmlpatterns";
|
|
qtInputs = [ qtbase ];
|
|
postFixup = ''
|
|
fixQtModuleCMakeConfig "XmlPatterns"
|
|
'';
|
|
}
|