vibe-check/shell.nix

8 lines
161 B
Nix
Raw Permalink Normal View History

2023-04-21 17:11:54 +01:00
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
buildInputs = with pkgs; [
cmake cmakeCurses ninja python3 gcc-arm-embedded
2023-04-24 15:23:41 +01:00
picotool clang-tools
2023-04-21 17:11:54 +01:00
];
}