10 lines
141 B
Nix
10 lines
141 B
Nix
{ qtSubmodule, qtbase }:
|
|
|
|
qtSubmodule {
|
|
name = "qtsvg";
|
|
qtInputs = [ qtbase ];
|
|
postFixup = ''
|
|
fixQtModuleCMakeConfig "Svg"
|
|
'';
|
|
}
|