2024-09-19 04:19:50 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, cmake, pkg-config, libusb1, pico-sdk, mbedtls_2 }:
|
2021-06-03 13:50:04 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "picotool";
|
2024-09-19 04:19:50 +00:00
|
|
|
version = "2.0.0";
|
2021-06-03 13:50:04 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "raspberrypi";
|
|
|
|
repo = pname;
|
|
|
|
rev = version;
|
2024-09-19 04:19:50 +00:00
|
|
|
sha256 = "sha256-z7EFk3qxg1PoKZQpUQqjhttZ2RkhhhiMdYc9TkXzkwk=";
|
2021-06-03 13:50:04 +00:00
|
|
|
};
|
|
|
|
|
2024-09-19 04:19:50 +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";
|
2024-09-19 04:19:50 +00:00
|
|
|
description = "Tool for interacting with RP2040/RP2350 device(s) in BOOTSEL mode, or with an RP2040/RP2350 binary";
|
2024-03-19 02:14:51 +00:00
|
|
|
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;
|
|
|
|
};
|
|
|
|
}
|