10 lines
187 B
Nix
10 lines
187 B
Nix
{ qtSubmodule, qtbase }:
|
|
|
|
qtSubmodule {
|
|
name = "qtsvg";
|
|
qtInputs = [ qtbase ];
|
|
outputs = [ "out" "dev" "bin" ];
|
|
postInstall = ''
|
|
moveToOutput "$qtPluginPrefix" "$bin"
|
|
'';
|
|
}
|