2017-02-28 09:37:57 -06:00
|
|
|
{ qtSubmodule, qtbase, qtmultimedia }:
|
|
|
|
|
|
|
|
qtSubmodule {
|
|
|
|
name = "qtlocation";
|
|
|
|
qtInputs = [ qtbase qtmultimedia ];
|
2017-05-18 18:19:42 -05:00
|
|
|
outputs = [ "out" "dev" "bin" ];
|
|
|
|
postInstall = ''
|
|
|
|
moveToOutput "$qtPluginPrefix" "$bin"
|
|
|
|
moveToOutput "$qtQmlPrefix" "$bin"
|
|
|
|
'';
|
2017-06-17 11:26:19 -05:00
|
|
|
# Linking with -lclipper fails with parallel build enabled
|
2017-06-24 22:22:48 +02:00
|
|
|
enableParallelBuilding = false;
|
2017-02-28 09:37:57 -06:00
|
|
|
}
|