mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2025-01-05 20:11:43 +03:00
10 lines
141 B
Nix
10 lines
141 B
Nix
{ qtSubmodule, qtbase }:
|
|
|
|
qtSubmodule {
|
|
name = "qtsvg";
|
|
qtInputs = [ qtbase ];
|
|
postFixup = ''
|
|
fixQtModuleCMakeConfig "Svg"
|
|
'';
|
|
}
|