8 lines
161 B
Nix
8 lines
161 B
Nix
{ pkgs ? import <nixpkgs> {} }:
|
|
pkgs.mkShell {
|
|
buildInputs = with pkgs; [
|
|
cmake cmakeCurses ninja python3 gcc-arm-embedded
|
|
picotool clang-tools
|
|
];
|
|
}
|