mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-16 01:45:11 +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
101 lines
2.3 KiB
Nix
101 lines
2.3 KiB
Nix
{
|
|
lib,
|
|
callPackage,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
cmake,
|
|
bison,
|
|
flex,
|
|
pkg-config,
|
|
libusb1,
|
|
elfutils,
|
|
libftdi1,
|
|
readline,
|
|
hidapi,
|
|
libserialport,
|
|
libusb-compat-0_1,
|
|
# Documentation building doesn't work on Darwin. It fails with:
|
|
# Undefined subroutine &Locale::Messages::dgettext called in ... texi2html
|
|
#
|
|
# https://github.com/NixOS/nixpkgs/issues/224761
|
|
docSupport ? (!stdenv.hostPlatform.isDarwin),
|
|
texliveMedium,
|
|
texinfo,
|
|
texi2html,
|
|
unixtools,
|
|
}:
|
|
|
|
let
|
|
useElfutils = lib.meta.availableOn stdenv.hostPlatform elfutils;
|
|
in
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "avrdude";
|
|
version = "8.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "avrdudes";
|
|
repo = "avrdude";
|
|
rev = "v${finalAttrs.version}";
|
|
sha256 = "w58HVCvKuWpGJwllupbj7ndeq4iE9LPs/IjFSUN0DOU=";
|
|
};
|
|
|
|
nativeBuildInputs =
|
|
[
|
|
cmake
|
|
bison
|
|
flex
|
|
pkg-config
|
|
]
|
|
++ lib.optionals docSupport [
|
|
unixtools.more
|
|
texliveMedium
|
|
texinfo
|
|
texi2html
|
|
];
|
|
|
|
buildInputs = [
|
|
(if useElfutils then elfutils else finalAttrs.finalPackage.passthru.libelf)
|
|
hidapi
|
|
libusb1
|
|
libftdi1
|
|
libserialport
|
|
readline
|
|
libusb-compat-0_1
|
|
];
|
|
|
|
postPatch = lib.optionalString (!useElfutils) ''
|
|
# vendored libelf is a static library
|
|
sed -i "s/PREFERRED_LIBELF elf/PREFERRED_LIBELF libelf.a elf/" CMakeLists.txt
|
|
'';
|
|
|
|
# Not used:
|
|
# -DHAVE_LINUXGPIO=ON because it's incompatible with libgpiod 2.x
|
|
cmakeFlags =
|
|
lib.optionals docSupport [ "-DBUILD_DOC=ON" ]
|
|
++ lib.optionals stdenv.hostPlatform.isLinux [
|
|
"-DHAVE_LINUXSPI=ON"
|
|
"-DHAVE_PARPORT=ON"
|
|
];
|
|
|
|
passthru = {
|
|
# Vendored and mutated copy of libelf for avrdudes use.
|
|
# Produces a static library only.
|
|
libelf = callPackage ./libelf.nix { };
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Command-line tool for programming Atmel AVR microcontrollers";
|
|
mainProgram = "avrdude";
|
|
longDescription = ''
|
|
AVRDUDE (AVR Downloader/UploaDEr) is an utility to
|
|
download/upload/manipulate the ROM and EEPROM contents of AVR
|
|
microcontrollers using the in-system programming technique (ISP).
|
|
'';
|
|
homepage = "https://www.nongnu.org/avrdude/";
|
|
license = licenses.gpl2Plus;
|
|
platforms = with platforms; linux ++ darwin;
|
|
maintainers = [ maintainers.bjornfor ];
|
|
};
|
|
})
|