Merge pull request #760 from grwlf/avarice
AVaRICE: translates between GDB's remote debug protocol and the AVR JTAG...
This commit is contained in:
commit
f0669d2b45
21
pkgs/development/tools/misc/avarice/default.nix
Normal file
21
pkgs/development/tools/misc/avarice/default.nix
Normal file
@ -0,0 +1,21 @@
|
||||
{ stdenv, fetchurl, pkgconfig, perl, libusb }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
|
||||
name="avarice-2.13";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://sourceforge/avarice/${name}.tar.bz2";
|
||||
sha256 = "0jhh1h1k5b41v2ycq8kn43nkrkh0b9l7xjmw38rak871g3z3hix1";
|
||||
};
|
||||
|
||||
buildInputs = [ pkgconfig perl libusb ];
|
||||
|
||||
meta = {
|
||||
license = stdenv.lib.licenses.gpl2;
|
||||
description = "AVaRICE translates between GDB's remote debug protocol and the AVR JTAG ICE protocol";
|
||||
homepage = http://sourceforge.net/projects/avarice/files/avarice/;
|
||||
maintainers = [ stdenv.lib.maintainers.smironov ];
|
||||
};
|
||||
}
|
||||
|
@ -3281,6 +3281,8 @@ let
|
||||
|
||||
avrdude = callPackage ../development/tools/misc/avrdude { };
|
||||
|
||||
avarice = callPackage ../development/tools/misc/avarice { };
|
||||
|
||||
bam = callPackage ../development/tools/build-managers/bam {};
|
||||
|
||||
binutils = callPackage ../development/tools/misc/binutils {
|
||||
|
Loading…
Reference in New Issue
Block a user