python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / tools / picotool / default.nix
blobf76e0287b564adf6805a3c0d68736befc39ea210
1 { lib, stdenv, fetchFromGitHub, cmake, pkg-config, libusb1, pico-sdk }:
3 stdenv.mkDerivation rec {
4   pname = "picotool";
5   version = "1.1.0";
7   src = fetchFromGitHub {
8     owner = "raspberrypi";
9     repo = pname;
10     rev = version;
11     sha256 = "sha256-YjDHoRcDoezyli42bJ0bnfjdNNY8l6ZilrxhOudqvwE=";
12   };
14   buildInputs = [ libusb1 pico-sdk ];
15   nativeBuildInputs = [ cmake pkg-config ];
16   cmakeFlags = [ "-DPICO_SDK_PATH=${pico-sdk}/lib/pico-sdk" ];
18   installPhase = ''
19     runHook preInstall
20     install -Dm755 ./picotool -t $out/bin
21     runHook postInstall
22   '';
24   meta = with lib; {
25     homepage = "https://github.com/raspberrypi/picotool";
26     description = "Tool for interacting with a RP2040 device in BOOTSEL mode, or with a RP2040 binary";
27     license = licenses.bsd3;
28     maintainers = with maintainers; [ muscaln ];
29     platforms = platforms.unix;
30   };