about summary refs log tree commit diff
path: root/pkgs/development/tools/misc/avarice/default.nix
blob: 77cb86766692e6fcf30a6c3012e9fe466ce4f10b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ stdenv, fetchurl, pkgconfig, gcc, perl, libusb }:

stdenv.mkDerivation rec {

  name="avarice-2.13";

  src = fetchurl {
    url = "mirror://sourceforge/avarice/${name}.tar.bz2";
    sha256 = "0jhh1h1k5b41v2ycq8kn43nkrkh0b9l7xjmw38rak871g3z3hix1";
  };

  buildInputs = [ pkgconfig gcc perl libusb ];

  meta = {
    license = stdenv.lib.licenses.gpl2;
    description = "Translator between GDB's remote debug protocol and the AVR JTAG ICE protocol";
    homepage = https://sourceforge.net/projects/avarice/files/avarice/;
    maintainers = [ stdenv.lib.maintainers.smironov ];
    platforms = stdenv.lib.platforms.linux;
  };
}