2017-03-25 16:16:51 -07:00
|
|
|
{ stdenv, qtSubmodule, qtbase, qtdeclarative }:
|
|
|
|
|
|
|
|
with stdenv.lib;
|
2017-02-28 07:37:57 -08:00
|
|
|
|
|
|
|
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"
|
|
|
|
'';
|
2017-02-28 07:37:57 -08:00
|
|
|
}
|