mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-18 00:49:52 +00:00
12 lines
258 B
Nix
12 lines
258 B
Nix
{ qtSubmodule, qtbase, qtmultimedia }:
|
|
|
|
qtSubmodule {
|
|
name = "qtlocation";
|
|
qtInputs = [ qtbase qtmultimedia ];
|
|
outputs = [ "out" "dev" "bin" ];
|
|
postInstall = ''
|
|
moveToOutput "$qtPluginPrefix" "$bin"
|
|
moveToOutput "$qtQmlPrefix" "$bin"
|
|
'';
|
|
}
|