2019-12-28 11:25:49 +00:00
|
|
|
{ stdenv, lib, fetchurl, fetchpatch, libftdi1, libusb1, pkgconfig, hidapi }:
|
2009-09-20 16:43:16 +00:00
|
|
|
|
2013-02-09 13:07:30 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "openocd";
|
2017-02-06 19:09:45 +00:00
|
|
|
version = "0.10.0";
|
2009-09-20 16:43:16 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2013-07-14 01:17:07 +00:00
|
|
|
url = "mirror://sourceforge/openocd/openocd-${version}.tar.bz2";
|
2017-02-06 19:09:45 +00:00
|
|
|
sha256 = "1bhn2c85rdz4gf23358kg050xlzh7yxbbwmqp24c0akmh3bff4kk";
|
2009-09-20 16:43:16 +00:00
|
|
|
};
|
|
|
|
|
2019-12-28 11:25:49 +00:00
|
|
|
patches = [
|
|
|
|
# Fix FTDI channel configuration for SheevaPlug
|
|
|
|
# https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=837989
|
|
|
|
(fetchpatch {
|
|
|
|
url = "https://salsa.debian.org/electronics-team/openocd/raw/9a94335daa332a37a51920f87afbad4d36fad2d5/debian/patches/fix-sheeva.patch";
|
|
|
|
sha256 = "01x021fagwvgxdpzk7psap7ryqiya4m4mi4nqr27asbmb3q46g5r";
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
2017-09-05 21:26:13 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2019-05-01 09:56:15 +00:00
|
|
|
buildInputs = [ libftdi1 libusb1 hidapi ];
|
2014-03-30 13:45:00 +00:00
|
|
|
|
|
|
|
configureFlags = [
|
|
|
|
"--enable-jtag_vpi"
|
|
|
|
"--enable-usb_blaster_libftdi"
|
2019-05-01 09:56:15 +00:00
|
|
|
(lib.enableFeature (! stdenv.isDarwin) "amtjtagaccel")
|
|
|
|
(lib.enableFeature (! stdenv.isDarwin) "gw16012")
|
2014-03-30 13:45:00 +00:00
|
|
|
"--enable-presto_libftdi"
|
|
|
|
"--enable-openjtag_ftdi"
|
2019-05-01 09:56:15 +00:00
|
|
|
(lib.enableFeature (! stdenv.isDarwin) "oocd_trace")
|
2014-03-30 13:45:00 +00:00
|
|
|
"--enable-buspirate"
|
2019-05-01 09:56:15 +00:00
|
|
|
(lib.enableFeature stdenv.isLinux "sysfsgpio")
|
2014-03-30 13:45:00 +00:00
|
|
|
"--enable-remote-bitbang"
|
|
|
|
];
|
2009-09-24 21:28:27 +00:00
|
|
|
|
2019-10-30 11:34:47 +00:00
|
|
|
NIX_CFLAGS_COMPILE = toString (lib.optionals stdenv.cc.isGNU [
|
2018-02-18 23:41:10 +00:00
|
|
|
"-Wno-implicit-fallthrough"
|
|
|
|
"-Wno-format-truncation"
|
|
|
|
"-Wno-format-overflow"
|
2019-01-11 04:56:49 +00:00
|
|
|
"-Wno-error=tautological-compare"
|
2019-11-03 12:43:38 +00:00
|
|
|
"-Wno-error=array-bounds"
|
2020-02-10 15:25:58 +00:00
|
|
|
"-Wno-error=cpp"
|
2019-10-30 11:34:47 +00:00
|
|
|
]);
|
2018-02-18 23:41:10 +00:00
|
|
|
|
2019-05-01 09:56:15 +00:00
|
|
|
postInstall = lib.optionalString stdenv.isLinux ''
|
2014-03-08 08:30:36 +00:00
|
|
|
mkdir -p "$out/etc/udev/rules.d"
|
2017-02-06 19:09:45 +00:00
|
|
|
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/"
|
2014-03-08 08:30:36 +00:00
|
|
|
'';
|
|
|
|
|
2019-05-01 09:56:15 +00:00
|
|
|
meta = with lib; {
|
2014-06-25 18:36:16 +00:00
|
|
|
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.
|
|
|
|
'';
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "http://openocd.sourceforge.net/";
|
2014-06-25 18:36:16 +00:00
|
|
|
license = licenses.gpl2Plus;
|
2018-07-22 19:50:19 +00:00
|
|
|
maintainers = with maintainers; [ bjornfor ];
|
2019-05-01 09:56:15 +00:00
|
|
|
platforms = platforms.unix;
|
2009-09-20 16:43:16 +00:00
|
|
|
};
|
|
|
|
}
|