Merge pull request #147367 from TilCreator/package-inav-configurator
This commit is contained in:
commit
d8028c8e06
@ -11795,6 +11795,13 @@
|
||||
githubId = 1618946;
|
||||
name = "Tiago Castro";
|
||||
};
|
||||
tilcreator = {
|
||||
name = "Tilman Jackel";
|
||||
email = "contact.nixos@tc-j.de";
|
||||
matrix = "@tilcreator:matrix.org";
|
||||
github = "TilCreator";
|
||||
githubId = 18621411;
|
||||
};
|
||||
tilpner = {
|
||||
email = "till@hoeppner.ws";
|
||||
github = "tilpner";
|
||||
|
@ -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;
|
||||
};
|
||||
}
|
@ -32426,6 +32426,8 @@ with pkgs;
|
||||
|
||||
emuflight-configurator = callPackage ../applications/science/robotics/emuflight-configurator { };
|
||||
|
||||
inav-configurator = callPackage ../applications/science/robotics/inav-configurator { };
|
||||
|
||||
mission-planner = callPackage ../applications/science/robotics/mission-planner { };
|
||||
|
||||
### MISC
|
||||
|
Loading…
Reference in New Issue
Block a user