mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-15 09:23:37 +00:00
4f0dadbf38
After final improvements to the official formatter implementation, this commit now performs the first treewide reformat of Nix files using it. This is part of the implementation of RFC 166. Only "inactive" files are reformatted, meaning only files that aren't being touched by any PR with activity in the past 2 months. This is to avoid conflicts for PRs that might soon be merged. Later we can do a full treewide reformat to get the rest, which should not cause as many conflicts. A CI check has already been running for some time to ensure that new and already-formatted files are formatted, so the files being reformatted here should also stay formatted. This commit was automatically created and can be verified using nix-builda08b3a4d19
.tar.gz \ --argstr baseRevb32a094368
result/bin/apply-formatting $NIXPKGS_PATH
102 lines
2.8 KiB
Nix
102 lines
2.8 KiB
Nix
{
|
|
stdenv,
|
|
lib,
|
|
fetchurl,
|
|
pkg-config,
|
|
hidapi,
|
|
tcl,
|
|
jimtcl,
|
|
libjaylink,
|
|
libusb1,
|
|
libgpiod_1,
|
|
|
|
enableFtdi ? true,
|
|
libftdi1,
|
|
|
|
# Allow selection the hardware targets (SBCs, JTAG Programmers, JTAG Adapters)
|
|
extraHardwareSupport ? [ ],
|
|
}:
|
|
let
|
|
|
|
isWindows = stdenv.hostPlatform.isWindows;
|
|
notWindows = !isWindows;
|
|
|
|
in
|
|
stdenv.mkDerivation rec {
|
|
pname = "openocd";
|
|
version = "0.12.0";
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/project/${pname}/${pname}/${version}/${pname}-${version}.tar.bz2";
|
|
sha256 = "sha256-ryVHiL6Yhh8r2RA/5uYKd07Jaow3R0Tu+Rl/YEMHWvo=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
tcl
|
|
];
|
|
|
|
buildInputs =
|
|
[ libusb1 ]
|
|
++ lib.optionals notWindows [
|
|
hidapi
|
|
jimtcl
|
|
libftdi1
|
|
libjaylink
|
|
]
|
|
++
|
|
# tracking issue for v2 api changes https://sourceforge.net/p/openocd/tickets/306/
|
|
lib.optional stdenv.hostPlatform.isLinux libgpiod_1;
|
|
|
|
configureFlags = [
|
|
"--disable-werror"
|
|
"--enable-jtag_vpi"
|
|
"--enable-remote-bitbang"
|
|
(lib.enableFeature notWindows "buspirate")
|
|
(lib.enableFeature (notWindows && enableFtdi) "ftdi")
|
|
(lib.enableFeature stdenv.hostPlatform.isLinux "linuxgpiod")
|
|
(lib.enableFeature stdenv.hostPlatform.isLinux "sysfsgpio")
|
|
(lib.enableFeature isWindows "internal-jimtcl")
|
|
(lib.enableFeature isWindows "internal-libjaylink")
|
|
] ++ map (hardware: "--enable-${hardware}") extraHardwareSupport;
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
env.NIX_CFLAGS_COMPILE = toString (
|
|
lib.optionals stdenv.cc.isGNU [
|
|
"-Wno-error=cpp"
|
|
"-Wno-error=strict-prototypes" # fixes build failure with hidapi 0.10.0
|
|
]
|
|
);
|
|
|
|
postInstall = lib.optionalString stdenv.hostPlatform.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";
|
|
mainProgram = "openocd";
|
|
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 ++ platforms.windows;
|
|
};
|
|
}
|