nixpkgs/pkgs/development/tools/picotool/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

31 lines
879 B
Nix
Raw Normal View History

2021-06-03 13:50:04 +00:00
{ lib, stdenv, fetchFromGitHub, cmake, pkg-config, libusb1, pico-sdk }:
stdenv.mkDerivation rec {
pname = "picotool";
2023-06-17 09:03:33 +00:00
version = "1.1.2";
2021-06-03 13:50:04 +00:00
src = fetchFromGitHub {
owner = "raspberrypi";
repo = pname;
rev = version;
2023-06-17 09:03:33 +00:00
sha256 = "sha256-OcQJeiva6X2rUyh1rJ+w4O2dWxaR7MwMfbHlnWuBVb8=";
2021-06-03 13:50:04 +00:00
};
buildInputs = [ libusb1 pico-sdk ];
nativeBuildInputs = [ cmake pkg-config ];
cmakeFlags = [ "-DPICO_SDK_PATH=${pico-sdk}/lib/pico-sdk" ];
2023-11-05 00:47:15 +00:00
postInstall = ''
install -Dm444 ../udev/99-picotool.rules -t $out/etc/udev/rules.d
'';
2021-06-03 13:50:04 +00:00
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";
2021-06-03 13:50:04 +00:00
license = licenses.bsd3;
2022-01-27 07:48:49 +00:00
maintainers = with maintainers; [ muscaln ];
2021-06-03 13:50:04 +00:00
platforms = platforms.unix;
};
}