nixpkgs/pkgs/development/libraries/qt-5/5.8/qtlocation.nix

12 lines
258 B
Nix
Raw Normal View History

{ qtSubmodule, qtbase, qtmultimedia }:
qtSubmodule {
name = "qtlocation";
qtInputs = [ qtbase qtmultimedia ];
2017-05-19 01:19:42 +02:00
outputs = [ "out" "dev" "bin" ];
postInstall = ''
moveToOutput "$qtPluginPrefix" "$bin"
moveToOutput "$qtQmlPrefix" "$bin"
'';
}