2016-03-21 21:40:40 +01:00
|
|
|
{ stdenv, fetchurl, pkgconfig, gcc, perl, libusb }:
|
2013-07-16 12:13:47 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
|
|
|
|
name="avarice-2.13";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/avarice/${name}.tar.bz2";
|
|
|
|
sha256 = "0jhh1h1k5b41v2ycq8kn43nkrkh0b9l7xjmw38rak871g3z3hix1";
|
|
|
|
};
|
|
|
|
|
2017-09-05 23:26:13 +02:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
buildInputs = [ gcc perl libusb ];
|
2013-07-16 12:13:47 +02:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
license = stdenv.lib.licenses.gpl2;
|
2013-10-05 16:22:46 +02:00
|
|
|
description = "Translator between GDB's remote debug protocol and the AVR JTAG ICE protocol";
|
2017-08-02 23:50:51 +02:00
|
|
|
homepage = https://sourceforge.net/projects/avarice/files/avarice/;
|
2013-07-16 12:13:47 +02:00
|
|
|
maintainers = [ stdenv.lib.maintainers.smironov ];
|
2013-07-16 19:40:45 +02:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2018-04-10 22:29:56 +02:00
|
|
|
broken = true; # 2018-04-10
|
2013-07-16 12:13:47 +02:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|