feat: add ExpressLRS configurator

This commit is contained in:
514fpv 2024-01-12 19:24:57 +08:00
parent f48b0a84ca
commit 6a2a411783
Signed by: koishi
SSH key fingerprint: SHA256:axz0uIzzY+5W19i7QOUuiw5LSqhKfCBKPf3L4xFRxLw
2 changed files with 52 additions and 0 deletions

View file

@ -16,5 +16,6 @@
inav-blackbox-tools
(pkgs.callPackage ./package/blheli32.nix { })
(pkgs.callPackage ./package/expresslrs.nix { })
];
}

View file

@ -0,0 +1,51 @@
{ lib
, fetchzip
, makeDesktopItem
, imagemagick
, buildFHSUserEnv }: let
name = "ExpressLRS-Configurator";
pname = "expresslrs-configurator";
version = "1.6.1";
dist = fetchzip {
name = "${pname}-dist";
url = "https://github.com/ExpressLRS/ExpressLRS-Configurator/releases/download/v${version}/${pname}-${version}.zip";
stripRoot = false;
hash = "sha256-m/e8dsOadjk63cwfnnCBbjXzI/ooWZUGRM5n267JmhQ=";
};
desktopItem = makeDesktopItem {
name = pname;
exec = pname;
icon = pname;
comment = "Cross platform configuration & build tool for the ExpressLRS radio link";
desktopName = "ExpressLRS Configurator";
genericName = "radio link configuration & build tool";
};
in buildFHSUserEnv {
inherit pname;
# copied from chromium deps
targetPkgs = pkgs: (with pkgs; [
glib fontconfig freetype pango cairo xorg.libX11 xorg.libXi atk nss nspr
xorg.libXcursor xorg.libXext xorg.libXfixes xorg.libXrender
xorg.libXScrnSaver xorg.libXcomposite xorg.libxcb
alsa-lib xorg.libXdamage xorg.libXtst xorg.libXrandr xorg.libxshmfence expat cups
dbus gdk-pixbuf gcc-unwrapped.lib
systemd
libexif pciutils
liberation_ttf curl util-linux wget
flac harfbuzz icu libpng libopus snappy speechd
bzip2 libcap at-spi2-atk at-spi2-core
libkrb5 libdrm libglvnd mesa coreutils
libxkbcommon pipewire wayland
libva gtk3 gtk4
]);
extraInstallCommands = ''
mkdir -p $out/share
${imagemagick}/bin/convert ${dist}/resources/assets/icon.png -resize 128x128 icon-128.png
install -m 444 -D icon-128.png $out/share/icons/hicolor/128x128/apps/${pname}.png
cp -r ${desktopItem}/share/applications $out/share/
'';
runScript = "${dist}/expresslrs-configurator";
}