Skip to content

Commit

Permalink
picotool: 1.1.2 -> 2.0.0
Browse files Browse the repository at this point in the history
Add mbedtls for full feature support.
  • Loading branch information
tpwrules authored and GaetanLepage committed Sep 26, 2024
1 parent 27e910e commit ec22f51
Showing 1 changed file with 12 additions and 4 deletions.
16 changes: 12 additions & 4 deletions pkgs/development/tools/picotool/default.nix
Original file line number Diff line number Diff line change
@@ -1,16 +1,24 @@
{ lib, stdenv, fetchFromGitHub, cmake, pkg-config, libusb1, pico-sdk }:
{ lib, stdenv, fetchFromGitHub, cmake, pkg-config, libusb1, pico-sdk, mbedtls_2 }:

stdenv.mkDerivation rec {
pname = "picotool";
version = "1.1.2";
version = "2.0.0";

src = fetchFromGitHub {
owner = "raspberrypi";
repo = pname;
rev = version;
sha256 = "sha256-OcQJeiva6X2rUyh1rJ+w4O2dWxaR7MwMfbHlnWuBVb8=";
sha256 = "sha256-z7EFk3qxg1PoKZQpUQqjhttZ2RkhhhiMdYc9TkXzkwk=";
};

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}'
'';

buildInputs = [ libusb1 pico-sdk ];
nativeBuildInputs = [ cmake pkg-config ];
cmakeFlags = [ "-DPICO_SDK_PATH=${pico-sdk}/lib/pico-sdk" ];
Expand All @@ -21,7 +29,7 @@ stdenv.mkDerivation rec {

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";
description = "Tool for interacting with RP2040/RP2350 device(s) in BOOTSEL mode, or with an RP2040/RP2350 binary";
mainProgram = "picotool";
license = licenses.bsd3;
maintainers = with maintainers; [ muscaln ];
Expand Down

0 comments on commit ec22f51

Please sign in to comment.