nixpkgs/pkgs/by-name/pi/picotool/package.nix

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

39 lines
1.2 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, cmake, pkg-config, libusb1, pico-sdk, mbedtls_2 }:
2021-06-03 13:50:04 +00:00
stdenv.mkDerivation rec {
pname = "picotool";
version = "2.0.0";
2021-06-03 13:50:04 +00:00
src = fetchFromGitHub {
owner = "raspberrypi";
repo = pname;
rev = version;
sha256 = "sha256-z7EFk3qxg1PoKZQpUQqjhttZ2RkhhhiMdYc9TkXzkwk=";
2021-06-03 13:50:04 +00:00
};
postPatch = ''
# necessary for signing/hashing support. our pico-sdk does not come with
# it by default, and it shouldn't due to submodule size. pico-sdk uses
# an upstream version of mbedtls 2.x so we patch ours in directly.
substituteInPlace lib/CMakeLists.txt \
--replace-fail "''$"'{PICO_SDK_PATH}/lib/mbedtls' '${mbedtls_2.src}'
'';
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 RP2040/RP2350 device(s) in BOOTSEL mode, or with an RP2040/RP2350 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;
};
}