stc/shell.nix
2024-10-05 17:13:33 +02:00

10 lines
157 B
Nix

{ pkgs ? import <nixpkgs> {}}:
pkgs.mkShell {
packages = with pkgs; [
cmake
gnumake
ninja
tomlplusplus
cpptoml
];
}