RapidMenu/shell.nix

11 lines
157 B
Nix
Raw Normal View History

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