2016-03-21 23:40:40 +03:00
|
|
|
{ stdenv, fetchurl, pkgconfig, gcc, perl, libusb }:
|
2013-07-16 14:13:47 +04:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
|
|
|
|
name="avarice-2.13";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/avarice/${name}.tar.bz2";
|
|
|
|
sha256 = "0jhh1h1k5b41v2ycq8kn43nkrkh0b9l7xjmw38rak871g3z3hix1";
|
|
|
|
};
|
|
|
|
|
2016-03-21 23:40:40 +03:00
|
|
|
buildInputs = [ pkgconfig gcc perl libusb ];
|
2013-07-16 14:13:47 +04:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
license = stdenv.lib.licenses.gpl2;
|
2013-10-05 18:22:46 +04:00
|
|
|
description = "Translator between GDB's remote debug protocol and the AVR JTAG ICE protocol";
|
2013-07-16 14:13:47 +04:00
|
|
|
homepage = http://sourceforge.net/projects/avarice/files/avarice/;
|
|
|
|
maintainers = [ stdenv.lib.maintainers.smironov ];
|
2013-07-16 21:40:45 +04:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2013-07-16 14:13:47 +04:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|