504525a148
GitOrigin-RevId: bd645e8668ec6612439a9ee7e71f7eac4099d4f6
38 lines
1.1 KiB
Nix
38 lines
1.1 KiB
Nix
{ appimageTools
|
|
, fetchurl
|
|
, lib
|
|
}:
|
|
|
|
let
|
|
pname = "arduino-ide";
|
|
version = "2.2.1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/arduino/arduino-ide/releases/download/${version}/arduino-ide_${version}_Linux_64bit.AppImage";
|
|
hash = "sha256-77uS/3ean3dWG/vDHG+ry238hiJlYub7H03f15eJu+I=";
|
|
};
|
|
|
|
appimageContents = appimageTools.extractType2 { inherit pname version src; };
|
|
in
|
|
appimageTools.wrapType2 {
|
|
inherit pname version src;
|
|
|
|
extraInstallCommands = ''
|
|
mv $out/bin/{${pname}-${version},${pname}}
|
|
|
|
install -Dm444 ${appimageContents}/${pname}.desktop -t $out/share/applications/
|
|
install -Dm444 ${appimageContents}/${pname}.png -t $out/share/pixmaps/
|
|
'';
|
|
|
|
extraPkgs = pkgs: with pkgs; [ libsecret ];
|
|
|
|
meta = with lib; {
|
|
description = "Open-source electronics prototyping platform";
|
|
homepage = "https://www.arduino.cc/en/software";
|
|
changelog = "https://github.com/arduino/arduino-ide/releases/tag/${version}";
|
|
license = licenses.agpl3Only;
|
|
mainProgram = "arduino-ide";
|
|
maintainers = with maintainers; [ clerie ];
|
|
platforms = [ "x86_64-linux" ];
|
|
};
|
|
}
|