mirror of
https://github.com/fredrikr79/SnakeDL3.git
synced 2025-05-27 17:34:25 +02:00
8 lines
137 B
Nix
8 lines
137 B
Nix
{ pkgs ? import <nixpkgs> {} }: pkgs.mkShell {
|
|
nativeBuildInputs = with pkgs; [
|
|
libgcc
|
|
sdl3
|
|
gnumake
|
|
];
|
|
}
|