stc/shell.nix

11 lines
157 B
Nix
Raw Normal View History

2024-10-05 17:13:33 +02:00
{ pkgs ? import <nixpkgs> {}}:
pkgs.mkShell {
packages = with pkgs; [
cmake
gnumake
ninja
tomlplusplus
cpptoml
];
}