nixpkgs/pkgs/development/libraries/qt-5/5.9/qtsensors.nix

14 lines
285 B
Nix
Raw Normal View History

2017-03-25 16:16:51 -07:00
{ stdenv, qtSubmodule, qtbase, qtdeclarative }:
with stdenv.lib;
qtSubmodule {
name = "qtsensors";
qtInputs = [ qtbase qtdeclarative ];
2017-05-18 16:19:42 -07:00
outputs = [ "out" "dev" "bin" ];
postInstall = ''
moveToOutput "$qtPluginPrefix" "$bin"
moveToOutput "$qtQmlPrefix" "$bin"
'';
}