forked from mirrors/nixpkgs
avrdudess: new package
AVRDUDESS is a GUI for AVRDUDE. In other words, it is a GUI for programming AVR microcontrollers.
This commit is contained in:
parent
0717378c46
commit
91d40ef2ea
42
pkgs/applications/misc/avrdudess/default.nix
Normal file
42
pkgs/applications/misc/avrdudess/default.nix
Normal file
|
@ -0,0 +1,42 @@
|
|||
{ stdenv, fetchurl, unzip, mono, avrgcclibc, avrdude, gtk, xdg_utils }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "avrdudess-2.2.20140102";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://blog.zakkemble.co.uk/download/avrdudess_20140102.zip";
|
||||
sha256 = "18llpvjsfhypzijrvfbzmcg3g141f307mzsrg11wcdxh9syxqak6";
|
||||
};
|
||||
|
||||
buildInputs = [ unzip ];
|
||||
|
||||
phases = [ "buildPhase" ];
|
||||
|
||||
buildPhase = ''
|
||||
mkdir -p "$out/avrdudess"
|
||||
mkdir -p "$out/bin"
|
||||
|
||||
unzip "$src" -d "$out/avrdudess"
|
||||
|
||||
cat >> "$out/bin/avrdudess" << __EOF__
|
||||
#!${stdenv.shell}
|
||||
export LD_LIBRARY_PATH="${gtk}/lib:${mono}/lib"
|
||||
# We need PATH from user env for xdg-open to find its tools, which
|
||||
# typically depend on the currently running desktop environment.
|
||||
export PATH="${avrgcclibc}/bin:${avrdude}/bin:${xdg_utils}/bin:\$PATH"
|
||||
|
||||
# avrdudess must have its resource files in its current working directory
|
||||
cd $out/avrdudess && exec ${mono}/bin/mono "$out/avrdudess/avrdudess.exe" "\$@"
|
||||
__EOF__
|
||||
|
||||
chmod a+x "$out/bin/"*
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "GUI for AVRDUDE (AVR microcontroller programmer)";
|
||||
homepage = https://github.com/zkemble/AVRDUDESS;
|
||||
license = licenses.gpl3;
|
||||
platforms = platforms.linux;
|
||||
maintainers = [ maintainers.bjornfor ];
|
||||
};
|
||||
}
|
|
@ -7947,6 +7947,8 @@ let
|
|||
eigen = eigen2;
|
||||
};
|
||||
|
||||
avrdudess = callPackage ../applications/misc/avrdudess { };
|
||||
|
||||
avxsynth = callPackage ../applications/video/avxsynth { };
|
||||
|
||||
awesome-3-4 = callPackage ../applications/window-managers/awesome/3.4.nix {
|
||||
|
|
Loading…
Reference in a new issue