fd29f6685f
Stay consistent with other multiple output packages.
14 lines
353 B
Nix
14 lines
353 B
Nix
{ qtSubmodule, qtbase, qtmultimedia }:
|
|
|
|
qtSubmodule {
|
|
name = "qtlocation";
|
|
qtInputs = [ qtbase qtmultimedia ];
|
|
outputs = [ "bin" "dev" "out" ];
|
|
postInstall = ''
|
|
moveToOutput "$qtPluginPrefix" "$bin"
|
|
moveToOutput "$qtQmlPrefix" "$bin"
|
|
'';
|
|
# Linking with -lclipper fails with parallel build enabled
|
|
enableParallelBuilding = false;
|
|
}
|