betaflight-configurator: init at 10.5.1
This commit is contained in:
parent
40cc9cfdb6
commit
170009b123
@ -0,0 +1,53 @@
|
|||||||
|
{stdenv, fetchurl, unzip, runtimeShell, makeDesktopItem, nwjs }:
|
||||||
|
|
||||||
|
let
|
||||||
|
strippedName = "betaflight-configurator";
|
||||||
|
desktopItem = makeDesktopItem {
|
||||||
|
name = strippedName;
|
||||||
|
exec = strippedName;
|
||||||
|
icon = "${strippedName}-icon.png";
|
||||||
|
comment = "Betaflight configuration tool";
|
||||||
|
desktopName = "Betaflight Configurator";
|
||||||
|
genericName = "Flight controller configuration tool";
|
||||||
|
};
|
||||||
|
in
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "${strippedName}-${version}";
|
||||||
|
version = "10.5.1";
|
||||||
|
src = fetchurl {
|
||||||
|
url = "https://github.com/betaflight/betaflight-configurator/releases/download/${version}/${strippedName}_${version}_linux64.zip";
|
||||||
|
sha256 = "1l4blqgaqfrnydk05q6pwdqdhcly2f8nwzrv0749cqmfiinh8ygc";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ unzip ];
|
||||||
|
|
||||||
|
installPhase = ''
|
||||||
|
mkdir -p $out/bin \
|
||||||
|
$out/opt/${strippedName} \
|
||||||
|
$out/share/icons
|
||||||
|
|
||||||
|
cp -r . $out/opt/${strippedName}/
|
||||||
|
cp icon/*_icon_128.png $out/share/icons/${strippedName}-icon.png
|
||||||
|
cp -r ${desktopItem}/share/applications $out/share/
|
||||||
|
|
||||||
|
cat >$out/bin/${strippedName}<<EOL
|
||||||
|
#!${runtimeShell}
|
||||||
|
|
||||||
|
${nwjs}/bin/nw $out/opt/${strippedName}
|
||||||
|
EOL
|
||||||
|
chmod +x $out/bin/${strippedName}
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "The Betaflight flight control system configuration tool";
|
||||||
|
longDescription = ''
|
||||||
|
A crossplatform configuration tool for the Betaflight flight control system.
|
||||||
|
Various types of aircraft are supported by the tool and by Betaflight, e.g.
|
||||||
|
quadcopters, hexacopters, octocopters and fixed-wing aircraft.
|
||||||
|
'';
|
||||||
|
homepage = https://github.com/betaflight/betaflight/wiki;
|
||||||
|
license = licenses.gpl3;
|
||||||
|
maintainers = with maintainers; [ wucke13 ];
|
||||||
|
platforms = platforms.linux;
|
||||||
|
};
|
||||||
|
}
|
@ -22983,6 +22983,8 @@ in
|
|||||||
|
|
||||||
apmplanner2 = libsForQt511.callPackage ../applications/science/robotics/apmplanner2 { };
|
apmplanner2 = libsForQt511.callPackage ../applications/science/robotics/apmplanner2 { };
|
||||||
|
|
||||||
|
betaflight-configurator = callPackage ../applications/science/robotics/betaflight-configurator { };
|
||||||
|
|
||||||
### MISC
|
### MISC
|
||||||
|
|
||||||
acpilight = callPackage ../misc/acpilight { };
|
acpilight = callPackage ../misc/acpilight { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user