sm64pc/shell.nix

21 lines
279 B
Nix
Raw Normal View History

2020-05-08 01:06:26 +00:00
let pkgs = import <nixpkgs> { };
in pkgs.mkShell {
2020-05-06 21:26:13 +00:00
buildInputs = with pkgs; [
2020-05-08 01:06:26 +00:00
gnumake
python3
audiofile
pkg-config
SDL2
libusb1
glfw3
libgcc
xorg.libX11
xorg.libXrandr
libpulseaudio
alsaLib
glfw
libGL
clang_10
2020-05-05 12:53:46 +00:00
];
}