mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-28 16:43:58 +00:00
38 lines
1.2 KiB
Nix
38 lines
1.2 KiB
Nix
{ appimageTools
|
|
, fetchurl
|
|
, lib
|
|
}:
|
|
|
|
let
|
|
pname = "arduino-ide";
|
|
version = "2.3.3";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/arduino/arduino-ide/releases/download/${version}/arduino-ide_${version}_Linux_64bit.AppImage";
|
|
hash = "sha256-VJGO3X1PUKE0OLr5PKH5uTE3rX0SlyrD6vdYdFdzHxk=";
|
|
};
|
|
|
|
appimageContents = appimageTools.extractType2 { inherit pname version src; };
|
|
in
|
|
appimageTools.wrapType2 {
|
|
inherit pname version src;
|
|
|
|
extraInstallCommands = ''
|
|
install -Dm444 ${appimageContents}/${pname}.desktop -t $out/share/applications/
|
|
install -Dm444 ${appimageContents}/${pname}.png -t $out/share/pixmaps/
|
|
substituteInPlace $out/share/applications/${pname}.desktop --replace-fail 'Exec=AppRun --no-sandbox %U' 'Exec=${pname} %U'
|
|
'';
|
|
|
|
extraPkgs = pkgs: [ 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" ];
|
|
};
|
|
}
|