stc/shell.nix

8 lines
124 B
Nix

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