inav-configurator: init at 3.0.2
This commit is contained in:
parent
2b57884e3e
commit
5989d54401
2 changed files with 59 additions and 0 deletions
|
@ -0,0 +1,57 @@
|
||||||
|
{ lib, stdenv, fetchurl, makeDesktopItem, copyDesktopItems, nwjs, wrapGAppsHook, gsettings-desktop-schemas, gtk3 }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "inav-configurator";
|
||||||
|
version = "3.0.2";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "https://github.com/iNavFlight/inav-configurator/releases/download/${version}/INAV-Configurator_linux64_${version}.tar.gz";
|
||||||
|
sha256 = "0v6dcg634wpp9q4ya3mj00j3pg25g62aq209iq2dsvj0a03afbp2";
|
||||||
|
};
|
||||||
|
|
||||||
|
icon = fetchurl {
|
||||||
|
url = "https://raw.githubusercontent.com/iNavFlight/inav-configurator/bf3fc89e6df51ecb83a386cd000eebf16859879e/images/inav_icon_128.png";
|
||||||
|
sha256 = "1i844dzzc5s5cr4vfpi6k2kdn8jiqq2n6c0fjqvsp4wdidwjahzw";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [ copyDesktopItems wrapGAppsHook ];
|
||||||
|
|
||||||
|
buildInputs = [ gsettings-desktop-schemas gtk3 ];
|
||||||
|
|
||||||
|
installPhase = ''
|
||||||
|
runHook preInstall
|
||||||
|
|
||||||
|
mkdir -p $out/bin \
|
||||||
|
$out/opt/${pname}
|
||||||
|
|
||||||
|
cp -r inav-configurator $out/opt/inav-configurator/
|
||||||
|
install -m 444 -D $icon $out/share/icons/hicolor/128x128/apps/${pname}.png
|
||||||
|
|
||||||
|
chmod +x $out/opt/inav-configurator/inav-configurator
|
||||||
|
makeWrapper ${nwjs}/bin/nw $out/bin/${pname} --add-flags $out/opt/inav-configurator/inav-configurator
|
||||||
|
|
||||||
|
runHook postInstall
|
||||||
|
'';
|
||||||
|
|
||||||
|
desktopItems = makeDesktopItem {
|
||||||
|
name = pname;
|
||||||
|
exec = pname;
|
||||||
|
icon = pname;
|
||||||
|
comment = "iNavFlight configuration tool";
|
||||||
|
desktopName = "iNav Configurator";
|
||||||
|
genericName = "Flight controller configuration tool";
|
||||||
|
};
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "The iNav flight control system configuration tool";
|
||||||
|
longDescription = ''
|
||||||
|
A crossplatform configuration tool for the iNav flight control system.
|
||||||
|
Various types of aircraft are supported by the tool and by iNav, e.g.
|
||||||
|
quadcopters, hexacopters, octocopters and fixed-wing aircraft.
|
||||||
|
'';
|
||||||
|
homepage = "https://github.com/iNavFlight/inav/wiki";
|
||||||
|
license = licenses.gpl3Only;
|
||||||
|
maintainers = with maintainers; [ tilcreator wucke13 ];
|
||||||
|
platforms = platforms.linux;
|
||||||
|
};
|
||||||
|
}
|
|
@ -32025,6 +32025,8 @@ with pkgs;
|
||||||
|
|
||||||
emuflight-configurator = callPackage ../applications/science/robotics/emuflight-configurator { };
|
emuflight-configurator = callPackage ../applications/science/robotics/emuflight-configurator { };
|
||||||
|
|
||||||
|
inav-configurator = callPackage ../applications/science/robotics/inav-configurator { };
|
||||||
|
|
||||||
mission-planner = callPackage ../applications/science/robotics/mission-planner { };
|
mission-planner = callPackage ../applications/science/robotics/mission-planner { };
|
||||||
|
|
||||||
### MISC
|
### MISC
|
||||||
|
|
Loading…
Reference in a new issue