1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-11-09 15:39:55 +00:00

Add nix-shell for development

This commit is contained in:
kugodd 2024-08-25 12:15:35 +02:00
parent f6f2d84d9f
commit a9c8246813

12
shell.nix Normal file
View File

@ -0,0 +1,12 @@
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
nativeBuildInputs = with pkgs.buildPackages; [
gnumake
libgcc
haskellPackages.SDL
haskellPackages.SDL-ttf
haskellPackages.SDL-gfx
haskellPackages.SDL-mixer
glew
];
}