mirror of
https://github.com/fredrikr79/SnakeDL3.git
synced 2025-12-24 19:20:21 +01:00
8 lines
137 B
Nix
8 lines
137 B
Nix
{ pkgs ? import <nixpkgs> {} }: pkgs.mkShell {
|
|
nativeBuildInputs = with pkgs; [
|
|
libgcc
|
|
sdl3
|
|
gnumake
|
|
];
|
|
}
|