rpi-pico-usb-ramdisk/shell.nix
2025-09-23 20:51:10 +02:00

9 lines
133 B
Nix

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