Adding OpenOCD.
svn path=/nixpkgs/trunk/; revision=17302
This commit is contained in:
parent
5cd8ae7289
commit
3eeec96a31
18
pkgs/development/tools/misc/openocd/default.nix
Normal file
18
pkgs/development/tools/misc/openocd/default.nix
Normal 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;
|
||||
};
|
||||
}
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user