Files
film-scanner/firmware/shell.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
];
}