summary refs log tree commit diff
path: root/pkgs/development/python-modules/pyglet
diff options
context:
space:
mode:
authorAlexander V. Nikolaev <avn@avnik.info>2018-02-24 15:12:44 +0200
committerAlexander V. Nikolaev <avn@avnik.info>2018-02-24 17:06:49 +0200
commit0acec7e984ff38b7a296a459ba4b539a3b719c1b (patch)
tree1d60ce67493ab87f80acb127f4e26a11a0324c28 /pkgs/development/python-modules/pyglet
parent1bc1909e5b89ec8d0e4ecadcbb5c66de0cb4fb5a (diff)
downloadnixlib-0acec7e984ff38b7a296a459ba4b539a3b719c1b.tar
nixlib-0acec7e984ff38b7a296a459ba4b539a3b719c1b.tar.gz
nixlib-0acec7e984ff38b7a296a459ba4b539a3b719c1b.tar.bz2
nixlib-0acec7e984ff38b7a296a459ba4b539a3b719c1b.tar.lz
nixlib-0acec7e984ff38b7a296a459ba4b539a3b719c1b.tar.xz
nixlib-0acec7e984ff38b7a296a459ba4b539a3b719c1b.tar.zst
nixlib-0acec7e984ff38b7a296a459ba4b539a3b719c1b.zip
treewide: transition mesa to libGLU_combined
Diffstat (limited to 'pkgs/development/python-modules/pyglet')
-rw-r--r--pkgs/development/python-modules/pyglet/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/pyglet/default.nix b/pkgs/development/python-modules/pyglet/default.nix
index 8ac066500a4c..3fc7f8ddb683 100644
--- a/pkgs/development/python-modules/pyglet/default.nix
+++ b/pkgs/development/python-modules/pyglet/default.nix
@@ -1,5 +1,5 @@
 { stdenv, buildPythonPackage, fetchPypi
-, mesa, xorg, freetype, fontconfig, future}:
+, libGLU_combined, xorg, freetype, fontconfig, future}:
 
 buildPythonPackage rec {
   version = "1.3.1";
@@ -11,7 +11,7 @@ buildPythonPackage rec {
   };
 
   postPatch = let
-    libs = [ mesa xorg.libX11 freetype fontconfig ];
+    libs = [ libGLU_combined xorg.libX11 freetype fontconfig ];
     paths = builtins.concatStringsSep "," (map (l: "\"${l}/lib\"") libs);
   in "sed -i -e 's|directories\.extend.*lib[^]]*|&,${paths}|' pyglet/lib.py";