Format all Nix files using the officially approved formatter,
making the CI check introduced in the previous commit succeed:
nix-build ci -A fmt.check
This is the next step of the of the [implementation](https://github.com/NixOS/nixfmt/issues/153)
of the accepted [RFC 166](https://github.com/NixOS/rfcs/pull/166).
This commit will lead to merge conflicts for a number of PRs,
up to an estimated ~1100 (~33%) among the PRs with activity in the past 2
months, but that should be lower than what it would be without the previous
[partial treewide format](https://github.com/NixOS/nixpkgs/pull/322537).
Merge conflicts caused by this commit can now automatically be resolved while rebasing using the
[auto-rebase script](8616af08d9/maintainers/scripts/auto-rebase).
If you run into any problems regarding any of this, please reach out to the
[formatting team](https://nixos.org/community/teams/formatting/) by
pinging @NixOS/nix-formatting.
75 lines
1.9 KiB
Nix
75 lines
1.9 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchurl,
|
|
unzip,
|
|
makeDesktopItem,
|
|
nwjs,
|
|
wrapGAppsHook3,
|
|
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.10.0";
|
|
src = fetchurl {
|
|
url = "https://github.com/betaflight/${pname}/releases/download/${version}/${pname}_${version}_linux64-portable.zip";
|
|
sha256 = "sha256-UB5Vr5wyCUZbOaQNckJQ1tAXwh8VSLNI1IgTiJzxV08=";
|
|
};
|
|
|
|
# remove large unneeded files
|
|
postUnpack = ''
|
|
find -name "lib*.so" -delete
|
|
'';
|
|
|
|
nativeBuildInputs = [
|
|
wrapGAppsHook3
|
|
unzip
|
|
];
|
|
|
|
buildInputs = [
|
|
gsettings-desktop-schemas
|
|
gtk3
|
|
];
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
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}
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Betaflight flight control system configuration tool";
|
|
mainProgram = "betaflight-configurator";
|
|
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";
|
|
sourceProvenance = with sourceTypes; [ binaryNativeCode ];
|
|
license = licenses.gpl3;
|
|
maintainers = with maintainers; [ wucke13 ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|