flexoptix-app: Init at 5.9.0
This commit is contained in:
parent
ebcf1f92fe
commit
e7d4fa4239
2 changed files with 49 additions and 0 deletions
47
pkgs/tools/misc/flexoptix-app/default.nix
Normal file
47
pkgs/tools/misc/flexoptix-app/default.nix
Normal file
|
@ -0,0 +1,47 @@
|
|||
{ lib, appimageTools, fetchurl }: let
|
||||
pname = "flexoptix-app";
|
||||
version = "5.9.0";
|
||||
name = "${pname}-${version}";
|
||||
|
||||
src = fetchurl {
|
||||
name = "${name}.AppImage";
|
||||
url = "https://flexbox.reconfigure.me/download/electron/linux/x64/FLEXOPTIX%20App.${version}.AppImage";
|
||||
sha256 = "0gbqaj9b11mxx0knmmh2d5863kaslbb3r6c4h8rjhg8qy4cws7hj";
|
||||
};
|
||||
|
||||
udevRules = fetchurl {
|
||||
url = "https://www.flexoptix.net/skin/udev_rules/99-tprogrammer.rules";
|
||||
sha256 = "0mr1bhgvavq1ax4206z1vr2y64s3r676w9jjl9ysziklbrsvk5rr";
|
||||
};
|
||||
|
||||
appimageContents = appimageTools.extractType2 {
|
||||
inherit name src;
|
||||
};
|
||||
|
||||
in appimageTools.wrapType2 {
|
||||
inherit name src;
|
||||
|
||||
multiPkgs = null; # no 32bit needed
|
||||
extraPkgs = { pkgs, ... }@args: [
|
||||
pkgs.hidapi
|
||||
] ++ appimageTools.defaultFhsEnvArgs.multiPkgs args;
|
||||
|
||||
extraInstallCommands = ''
|
||||
mv $out/bin/{${name},${pname}}
|
||||
install -Dm444 ${appimageContents}/flexoptix-app.desktop -t $out/share/applications
|
||||
install -Dm444 ${appimageContents}/flexoptix-app.png -t $out/share/pixmaps
|
||||
substituteInPlace $out/share/applications/flexoptix-app.desktop \
|
||||
--replace 'Exec=AppRun' "Exec=$out/bin/${pname}"
|
||||
mkdir -p $out/lib/udev/rules.d
|
||||
ln -s ${udevRules} $out/lib/udev/rules.d/99-tprogrammer.rules
|
||||
'';
|
||||
|
||||
meta = {
|
||||
description = "Configure FLEXOPTIX Universal Transcievers in seconds";
|
||||
homepage = "https://www.flexoptix.net";
|
||||
changelog = "https://www.flexoptix.net/en/flexoptix-app/?os=linux#flexapp__modal__changelog";
|
||||
license = lib.licenses.unfree;
|
||||
maintainers = with lib.maintainers; [ das_j ];
|
||||
platforms = [ "x86_64-linux" ];
|
||||
};
|
||||
}
|
|
@ -4472,6 +4472,8 @@ in
|
|||
|
||||
flent = python3Packages.callPackage ../applications/networking/flent { };
|
||||
|
||||
flexoptix-app = callPackage ../tools/misc/flexoptix-app { };
|
||||
|
||||
flpsed = callPackage ../applications/editors/flpsed { };
|
||||
|
||||
fluentd = callPackage ../tools/misc/fluentd { };
|
||||
|
|
Loading…
Reference in a new issue