evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / av / avrdudess / package.nix
blob01dbf16f007817d76b73e96fc94dbbf59c30cdb2
1 { lib, stdenv, runtimeShell, fetchurl, unzip, mono, avrdude, gtk2, xdg-utils }:
3 stdenv.mkDerivation {
4   pname = "avrdudess";
5   version = "2.18";
7   src = fetchurl {
8     url = "https://github.com/ZakKemble/AVRDUDESS/releases/download/v2.18/AVRDUDESS-2.18-portable.zip";
9     sha256 = "sha256-N93FLiXp1WwhI5KwH6sho2wyFtkbODwCHOpEVbVnYdc=";
10   };
12   nativeBuildInputs = [ unzip ];
14   dontUnpack = true;
15   dontInstall = true;
17   buildPhase = ''
18     mkdir -p "$out/avrdudess"
19     mkdir -p "$out/bin"
21     unzip "$src" -d "$out/avrdudess"
23     cat >> "$out/bin/avrdudess" << __EOF__
24     #!${runtimeShell}
25     export LD_LIBRARY_PATH="${lib.makeLibraryPath [gtk2 mono]}"
26     # We need PATH from user env for xdg-open to find its tools, which
27     # typically depend on the currently running desktop environment.
28     export PATH="\$PATH:${lib.makeBinPath [ avrdude xdg-utils ]}"
30     # avrdudess must have its resource files in its current working directory
31     cd $out/avrdudess && exec ${mono}/bin/mono "$out/avrdudess/avrdudess.exe" "\$@"
32     __EOF__
34     chmod a+x "$out/bin/"*
35   '';
37   meta = with lib; {
38     description = "GUI for AVRDUDE (AVR microcontroller programmer)";
39     homepage = "https://blog.zakkemble.net/avrdudess-a-gui-for-avrdude/";
40     changelog = "https://github.com/ZakKemble/AVRDUDESS/blob/v${version}/Changelog.txt";
41     license = licenses.gpl3;
42     platforms = platforms.linux;
43     maintainers = [ maintainers.bjornfor ];
44     mainProgram = "avrdudess";
45   };