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

14 lines
285 B
Nix
Raw Normal View History

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