mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-12 15:47:28 +00:00
0e79ce0751
latest release is 3.5 years old but the project is still active
61 lines
2.1 KiB
Nix
61 lines
2.1 KiB
Nix
{ stdenv, lib, fetchgit, libftdi1, libusb1, pkgconfig, hidapi, autoreconfHook }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "openocd";
|
|
version = "2020-09-02";
|
|
|
|
src = fetchgit {
|
|
url = "https://git.code.sf.net/p/openocd/code";
|
|
rev = "d46f28c2ea2611f5fbbc679a5eed253d3dcd2fe3";
|
|
sha256 = "1256qqhn3pxmijfk1x0y5b5kc5ar88ivykkvx0h1m7pdwqfs6zm9";
|
|
fetchSubmodules = true;
|
|
};
|
|
|
|
nativeBuildInputs = [ pkgconfig autoreconfHook ];
|
|
buildInputs = [ libftdi1 libusb1 hidapi ];
|
|
|
|
configureFlags = [
|
|
"--enable-jtag_vpi"
|
|
"--enable-usb_blaster_libftdi"
|
|
(lib.enableFeature (! stdenv.isDarwin) "amtjtagaccel")
|
|
(lib.enableFeature (! stdenv.isDarwin) "gw16012")
|
|
"--enable-presto_libftdi"
|
|
"--enable-openjtag_ftdi"
|
|
(lib.enableFeature (! stdenv.isDarwin) "oocd_trace")
|
|
"--enable-buspirate"
|
|
(lib.enableFeature stdenv.isLinux "sysfsgpio")
|
|
"--enable-remote-bitbang"
|
|
];
|
|
|
|
NIX_CFLAGS_COMPILE = lib.optionals stdenv.cc.isGNU [
|
|
"-Wno-error=cpp"
|
|
];
|
|
|
|
postInstall = lib.optionalString stdenv.isLinux ''
|
|
mkdir -p "$out/etc/udev/rules.d"
|
|
rules="$out/share/openocd/contrib/60-openocd.rules"
|
|
if [ ! -f "$rules" ]; then
|
|
echo "$rules is missing, must update the Nix file."
|
|
exit 1
|
|
fi
|
|
ln -s "$rules" "$out/etc/udev/rules.d/"
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Free and Open On-Chip Debugging, In-System Programming and Boundary-Scan Testing";
|
|
longDescription = ''
|
|
OpenOCD provides on-chip programming and debugging support with a layered
|
|
architecture of JTAG interface and TAP support, debug target support
|
|
(e.g. ARM, MIPS), and flash chip drivers (e.g. CFI, NAND, etc.). Several
|
|
network interfaces are available for interactiving with OpenOCD: HTTP,
|
|
telnet, TCL, and GDB. The GDB server enables OpenOCD to function as a
|
|
"remote target" for source-level debugging of embedded systems using the
|
|
GNU GDB program.
|
|
'';
|
|
homepage = "https://openocd.sourceforge.net/";
|
|
license = licenses.gpl2Plus;
|
|
maintainers = with maintainers; [ bjornfor ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|