1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-10-18 06:30:41 +00:00
hyperrogue/shell.nix

13 lines
265 B
Nix
Raw Normal View History

2024-08-25 10:15:35 +00:00
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
nativeBuildInputs = with pkgs.buildPackages; [
gnumake
libgcc
haskellPackages.SDL
haskellPackages.SDL-ttf
haskellPackages.SDL-gfx
haskellPackages.SDL-mixer
glew
];
}