blob: 522e4d0285d17af40ddd610b209db11ed1e25ba9 (
plain)
1
2
3
4
5
6
7
8
9
10
|
with import <nixpkgs> {};
with xorg;
{
allowUnfree = true;
games = stdenv.mkDerivation rec {
name = "opengl";
buildInputs = [ libXi libX11 xorg.libXext xorg.libXcursor xorg.libXrandr xorg.libXxf86vm mesa openal ];
LD_LIBRARY_PATH = lib.makeLibraryPath buildInputs;
};
}
|