rpi-pico-usb-ramdisk/shell.nix
Jakob Lechner cd44e736db Use RP2350
2025-03-10 21:59:58 +01:00

9 lines
133 B
Nix

{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
nativeBuildInputs = with pkgs; [
picotool
gcc
gnumake
rustup
];
}