11 lines
258 B
Nix
11 lines
258 B
Nix
{ qtSubmodule, qtbase, qtmultimedia }:
|
|
|
|
qtSubmodule {
|
|
name = "qtlocation";
|
|
qtInputs = [ qtbase qtmultimedia ];
|
|
outputs = [ "out" "dev" "bin" ];
|
|
postInstall = ''
|
|
moveToOutput "$qtPluginPrefix" "$bin"
|
|
moveToOutput "$qtQmlPrefix" "$bin"
|
|
'';
|
|
}
|