Files
nixpkgs/pkgs/by-name/st/stlink-tool/package.nix
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

43 lines
1.0 KiB
Nix

{
lib,
stdenv,
pkg-config,
fetchFromGitHub,
libusb1,
}:
# IMPORTANT: You need permissions to access the stlink usb devices.
# Add services.udev.packages = [ pkgs.stlink ] to your configuration.nix
stdenv.mkDerivation {
pname = "stlink-tool";
version = "0-unstable-2020-06-10";
src = fetchFromGitHub {
owner = "jeanthom";
repo = "stlink-tool";
rev = "8cbdffee012d5a782dd67d1277ed22fa889b9ba9";
hash = "sha256-1Mk4rFyIviJ9hcJo1GyzRmlPIemBJtuj3PgvnNhche0=";
fetchSubmodules = true;
};
buildInputs = [ libusb1 ];
nativeBuildInputs = [ pkg-config ];
env.NIX_CFLAGS_COMPILE = "-Wno-uninitialized";
installPhase = ''
runHook preInstall
install -D stlink-tool $out/bin/stlink-tool
runHook postInstall
'';
meta = with lib; {
description = "libusb tool for flashing chinese ST-Link dongles";
homepage = "https://github.com/jeanthom/stlink-tool";
license = licenses.mit;
platforms = platforms.unix;
maintainers = [ maintainers.wucke13 ];
mainProgram = "stlink-tool";
};
}