summary refs log tree commit diff
path: root/pkgs/development/libraries/qt-5/5.9/qtsensors.nix
blob: 4127d00b769393439363a5b79e1f9b304f7887db (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ stdenv, qtSubmodule, qtbase, qtdeclarative }:

with stdenv.lib;

qtSubmodule {
  name = "qtsensors";
  qtInputs = [ qtbase qtdeclarative ];
  outputs = [ "bin" "dev" "out" ];
  postInstall = ''
    moveToOutput "$qtPluginPrefix" "$bin"
    moveToOutput "$qtQmlPrefix" "$bin"
  '';
}