lol
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fixes irrlicht and minetest to work with mesa > 10

+45 -1
+3 -1
pkgs/development/libraries/irrlicht/default.nix
··· 11 11 sha256 = "0v31l3k0fzy7isdsx2sh0baaixzlml1m7vgz6cd0015d9f5n99vl"; 12 12 }; 13 13 14 - patchPhase = '' 14 + patches = [ ./irrlicht-1.8.1-mesa-10.x.patch ]; 15 + 16 + postPatch = '' 15 17 sed -i /stdcall-alias/d source/Irrlicht/Makefile 16 18 ''; 17 19
+40
pkgs/development/libraries/irrlicht/irrlicht-1.8.1-mesa-10.x.patch
··· 1 + From 244d00280c1b082ca164f92337773e9e4e1a3898 Mon Sep 17 00:00:00 2001 2 + From: hiker <henrichsjoerg@mgail.com> 3 + Date: Wed, 26 Feb 2014 11:13:03 +1100 4 + Subject: [PATCH] Applied patch from jpirie for fixing mesa 10 compilation 5 + problems. 6 + 7 + --- irrlicht-1.8.1/source/Irrlicht/COpenGLExtensionHandler.h 8 + +++ irrlicht-1.8.1/source/Irrlicht/COpenGLExtensionHandler.h 9 + @@ -21,6 +21,7 @@ 10 + #endif 11 + #include <GL/gl.h> 12 + #if defined(_IRR_OPENGL_USE_EXTPOINTER_) 13 + + typedef void (APIENTRYP PFNGLBLENDEQUATIONPROC) (GLenum mode); 14 + #include "glext.h" 15 + #endif 16 + #include "wglext.h" 17 + @@ -35,6 +36,7 @@ 18 + #endif 19 + #include <OpenGL/gl.h> 20 + #if defined(_IRR_OPENGL_USE_EXTPOINTER_) 21 + + typedef void (APIENTRYP PFNGLBLENDEQUATIONPROC) (GLenum mode); 22 + #include "glext.h" 23 + #endif 24 + #elif defined(_IRR_COMPILE_WITH_SDL_DEVICE_) && !defined(_IRR_COMPILE_WITH_X11_DEVICE_) 25 + @@ -48,6 +50,7 @@ 26 + #define NO_SDL_GLEXT 27 + #include <SDL/SDL_video.h> 28 + #include <SDL/SDL_opengl.h> 29 + + typedef void (APIENTRYP PFNGLBLENDEQUATIONPROC) (GLenum mode); 30 + #include "glext.h" 31 + #else 32 + #if defined(_IRR_OPENGL_USE_EXTPOINTER_) 33 + @@ -60,6 +63,7 @@ 34 + #include <GL/gl.h> 35 + #include <GL/glx.h> 36 + #if defined(_IRR_OPENGL_USE_EXTPOINTER_) 37 + + typedef void (APIENTRYP PFNGLBLENDEQUATIONPROC) (GLenum mode); 38 + #include "glext.h" 39 + #undef GLX_ARB_get_proc_address // avoid problems with local glxext.h 40 + #include "glxext.h"
+2
pkgs/games/minetest/default.nix
··· 7 7 src = fetchgit { 8 8 url = "https://github.com/celeron55/minetest.git"; 9 9 rev = "ab06fca4bed26f3dc97d5e5cff437d075d7acff8"; 10 + sha256 = "033gajwxgs8dqxb8684waaav28s0qd6cd4rlzfldwgdbkwam9cb1"; 10 11 }; 11 12 data = fetchgit { 12 13 url = "https://github.com/celeron55/minetest_game.git"; 13 14 rev = "3928eccf74af0288d12ffb14f8222fae479bc06b"; 15 + sha256 = "1gw2267bnqwfpnm7iq014y1vkb1v3nhpg1dmg9vgm9z5yja2blif"; 14 16 }; 15 17 }; 16 18 in stdenv.mkDerivation {