Files
SnakeDL3/shell.nix

8 lines
137 B
Nix

{ pkgs ? import <nixpkgs> {} }: pkgs.mkShell {
nativeBuildInputs = with pkgs; [
libgcc
sdl3
gnumake
];
}