1{ stdenv, fetchurl, pkgconfig, perl, libusb }:
2
3stdenv.mkDerivation rec {
4
5 name="avarice-2.13";
6
7 src = fetchurl {
8 url = "mirror://sourceforge/avarice/${name}.tar.bz2";
9 sha256 = "0jhh1h1k5b41v2ycq8kn43nkrkh0b9l7xjmw38rak871g3z3hix1";
10 };
11
12 buildInputs = [ pkgconfig perl libusb ];
13
14 meta = {
15 license = stdenv.lib.licenses.gpl2;
16 description = "Translator between GDB's remote debug protocol and the AVR JTAG ICE protocol";
17 homepage = http://sourceforge.net/projects/avarice/files/avarice/;
18 maintainers = [ stdenv.lib.maintainers.smironov ];
19 platforms = stdenv.lib.platforms.linux;
20 };
21}
22