Merge pull request #40029 from knedlsepp/fix-pyopengl

pythonPackages.pyopengl: fix build
This commit is contained in:
Jörg Thalheim 2018-05-07 10:16:35 +01:00 committed by GitHub
commit f469f2eae5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -11567,11 +11567,15 @@ in {
sha256 = "9b47c5c3a094fa518ca88aeed35ae75834d53e4285512c61879f67a48c94ddaf";
};
propagatedBuildInputs = [ pkgs.libGLU_combined pkgs.freeglut self.pillow ];
patchPhase = ''
sed -i "s|util.find_library( name )|name|" OpenGL/platform/ctypesloader.py
sed -i "s|'GL',|'libGL.so',|" OpenGL/platform/glx.py
sed -i "s|'GLU',|'${pkgs.libGLU_combined}/lib/libGLU.so',|" OpenGL/platform/glx.py
sed -i "s|'glut',|'${pkgs.freeglut}/lib/libglut.so',|" OpenGL/platform/glx.py
patchPhase = let
ext = stdenv.hostPlatform.extensions.sharedLibrary; in ''
substituteInPlace OpenGL/platform/glx.py \
--replace "'GL'" "'${pkgs.libGL}/lib/libGL${ext}'" \
--replace "'GLU'" "'${pkgs.libGLU}/lib/libGLU${ext}'" \
--replace "'glut'" "'${pkgs.freeglut}/lib/libglut${ext}'"
substituteInPlace OpenGL/platform/darwin.py \
--replace "'OpenGL'" "'${pkgs.libGL}/lib/libGL${ext}'" \
--replace "'GLUT'" "'${pkgs.freeglut}/lib/libglut${ext}'"
'';
meta = {
homepage = http://pyopengl.sourceforge.net/;