fd29f6685f
Stay consistent with other multiple output packages.
11 lines
187 B
Nix
11 lines
187 B
Nix
{ qtSubmodule, qtbase }:
|
|
|
|
qtSubmodule {
|
|
name = "qtsvg";
|
|
qtInputs = [ qtbase ];
|
|
outputs = [ "bin" "dev" "out" ];
|
|
postInstall = ''
|
|
moveToOutput "$qtPluginPrefix" "$bin"
|
|
'';
|
|
}
|