stc/shell.nix

9 lines
124 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
];
}