49 lines
1.6 KiB
Nix
49 lines
1.6 KiB
Nix
{stdenv, fetchurl, unzip, makeDesktopItem, nwjs, wrapGAppsHook, gsettings-desktop-schemas, gtk3 }:
|
|
|
|
let
|
|
pname = "betaflight-configurator";
|
|
desktopItem = makeDesktopItem {
|
|
name = pname;
|
|
exec = pname;
|
|
icon = pname;
|
|
comment = "Betaflight configuration tool";
|
|
desktopName = "Betaflight Configurator";
|
|
genericName = "Flight controller configuration tool";
|
|
};
|
|
in
|
|
stdenv.mkDerivation rec {
|
|
inherit pname;
|
|
version = "10.6.0";
|
|
src = fetchurl {
|
|
url = "https://github.com/betaflight/${pname}/releases/download/${version}/${pname}_${version}_linux64.zip";
|
|
sha256 = "09hayzhwangh8b81r038p320vbg0xxlyzrdp9pcmfyxp6s00xslw";
|
|
};
|
|
|
|
nativeBuildInputs = [ wrapGAppsHook ];
|
|
|
|
buildInputs = [ unzip gsettings-desktop-schemas gtk3 ];
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/bin \
|
|
$out/opt/${pname}
|
|
|
|
cp -r . $out/opt/${pname}/
|
|
install -m 444 -D icon/bf_icon_128.png $out/share/icons/hicolor/128x128/apps/${pname}.png
|
|
cp -r ${desktopItem}/share/applications $out/share/
|
|
|
|
makeWrapper ${nwjs}/bin/nw $out/bin/${pname} --add-flags $out/opt/${pname}
|
|
'';
|
|
|
|
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;
|
|
};
|
|
}
|