mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-26 23:03:41 +00:00
ff1a94e523
The nixpkgs-unstable channel's programs.sqlite was used to identify packages producing exactly one binary, and these automatically added to their package definitions wherever possible.
31 lines
879 B
Nix
31 lines
879 B
Nix
{ lib, stdenv, fetchFromGitHub, cmake, pkg-config, libusb1, pico-sdk }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "picotool";
|
|
version = "1.1.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "raspberrypi";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "sha256-OcQJeiva6X2rUyh1rJ+w4O2dWxaR7MwMfbHlnWuBVb8=";
|
|
};
|
|
|
|
buildInputs = [ libusb1 pico-sdk ];
|
|
nativeBuildInputs = [ cmake pkg-config ];
|
|
cmakeFlags = [ "-DPICO_SDK_PATH=${pico-sdk}/lib/pico-sdk" ];
|
|
|
|
postInstall = ''
|
|
install -Dm444 ../udev/99-picotool.rules -t $out/etc/udev/rules.d
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/raspberrypi/picotool";
|
|
description = "Tool for interacting with a RP2040 device in BOOTSEL mode, or with a RP2040 binary";
|
|
mainProgram = "picotool";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ muscaln ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|