Files
Ihar HrachyshkaandWolfgang Walther 567e8dfd8e treewide: clean up 'meta = with' pattern
This commit was created by a combination of scripts and tools:
- an ast-grep script to prefix things in meta with `lib.`,
- a modified nixf-diagnose / nixf combination to remove unused `with
lib;`, and
- regular nixfmt.

Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
2025-12-10 18:09:49 +01:00

49 lines
1.0 KiB
Nix

{
stdenv,
lib,
fetchFromGitHub,
go-md2man,
installShellFiles,
libusb-compat-0_1,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "teensy-loader-cli";
version = "2.3";
src = fetchFromGitHub {
owner = "PaulStoffregen";
repo = "teensy_loader_cli";
rev = finalAttrs.version;
sha256 = "sha256-NYqCNWO/nHEuNc9eOzsUqJEHJtZ3XaNz1VYNbeuqEk8=";
};
nativeBuildInputs = [
go-md2man
installShellFiles
];
buildInputs = [
libusb-compat-0_1
];
installPhase = ''
runHook preInstall
install -Dm555 teensy_loader_cli $out/bin/teensy-loader-cli
install -Dm444 -t $out/share/doc/teensy-loader-cli *.md *.txt
go-md2man -in README.md -out teensy-loader-cli.1
installManPage *.1
runHook postInstall
'';
meta = {
description = "Firmware uploader for the Teensy microcontroller boards";
mainProgram = "teensy-loader-cli";
homepage = "https://www.pjrc.com/teensy/";
license = lib.licenses.gpl3Only;
platforms = lib.platforms.unix;
};
})