Adding OpenOCD.

svn path=/nixpkgs/trunk/; revision=17302
This commit is contained in:
Lluís Batlle i Rossell 2009-09-20 16:43:16 +00:00
parent 5cd8ae7289
commit 3eeec96a31
2 changed files with 22 additions and 0 deletions

View file

@ -0,0 +1,18 @@
{stdenv, fetchurl}:
stdenv.mkDerivation {
name = "openocd-0.2.0";
src = fetchurl {
url = "http://download.berlios.de/openocd/openocd-0.2.0.tar.bz2";
sha256 = "1qdl2a2mxhl07xz32l9nxjvmf16b0717aqlrhd28akn6si3jps54";
};
meta = {
homepage = http://openocd.berlios.de;
description = "Open On Chip Debugger";
license = "GPLv2";
maintainers = with stdenv.lib.maintainers; [viric];
platforms = with stdenv.lib.platforms; linux;
};
}

View file

@ -2689,6 +2689,10 @@ let
inherit fetchurl stdenv;
};
openocd = import ../development/tools/misc/openocd {
inherit fetchurl stdenv;
};
oprofile = import ../development/tools/profiling/oprofile {
inherit fetchurl stdenv binutils popt;
inherit makeWrapper gawk which gnugrep;