mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
fc2b144cf3
Werror should not be used when packaging
80 lines
2.5 KiB
Nix
80 lines
2.5 KiB
Nix
{ stdenv
|
|
, lib
|
|
, fetchpatch
|
|
, fetchurl
|
|
, pkg-config
|
|
, hidapi
|
|
, libftdi1
|
|
, libusb1
|
|
, libgpiod
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "openocd";
|
|
version = "0.11.0";
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/project/${pname}/${pname}/${version}/${pname}-${version}.tar.bz2";
|
|
sha256 = "0z8y7mmv0mhn2l5gs3vz6l7cnwak7agklyc7ml33f7gz99rwx8s3";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
|
|
buildInputs = [ hidapi libftdi1 libusb1 ]
|
|
++ lib.optional stdenv.isLinux libgpiod;
|
|
|
|
patches = [
|
|
# Patch is upstream, so can be removed when OpenOCD 0.12.0 or later is released.
|
|
(fetchpatch
|
|
{
|
|
url = "https://github.com/openocd-org/openocd/commit/cff0e417da58adef1ceef9a63a99412c2cc87ff3.patch";
|
|
sha256 = "Xxzf5miWy4S34sbQq8VQdAbY/oqGyhL/AJxiEPRuj3Q=";
|
|
})
|
|
];
|
|
|
|
configureFlags = [
|
|
"--disable-werror"
|
|
"--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")
|
|
(lib.enableFeature stdenv.isLinux "linuxgpiod")
|
|
"--enable-remote-bitbang"
|
|
];
|
|
|
|
NIX_CFLAGS_COMPILE = lib.optionals stdenv.cc.isGNU [
|
|
"-Wno-error=cpp"
|
|
"-Wno-error=strict-prototypes" # fixes build failure with hidapi 0.10.0
|
|
];
|
|
|
|
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 prusnak ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|