13 lines
189 B
Nix
13 lines
189 B
Nix
{ pkgs ? import <nixpkgs> {} }:
|
|
|
|
pkgs.mkShell {
|
|
buildInputs = with pkgs; [
|
|
tio
|
|
stdenv
|
|
elf2uf2-rs
|
|
probe-run
|
|
# keep this line if you use bash
|
|
bashInteractive
|
|
];
|
|
}
|