about summary refs log tree commit diff
path: root/pkgs/development/python-modules/moderngl
diff options
context:
space:
mode:
authorFrido Friedemann <friede.mann@posteo.de>2021-04-30 16:11:46 +0200
committerJonathan Ringer <jonringer@users.noreply.github.com>2021-05-13 09:29:37 -0700
commitd52e8aaab581b364527cf1ddb707b9d72b2bbdd4 (patch)
treef155fa40e4b833280f28c64089fab7ae979e7b69 /pkgs/development/python-modules/moderngl
parent7b056fe82d53a5ced0edc4ceebb181ae2bb3bdc5 (diff)
glcontext: init at 2.3.3 and add as moderngl dep
Diffstat (limited to 'pkgs/development/python-modules/moderngl')
-rw-r--r--pkgs/development/python-modules/moderngl/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/moderngl/default.nix b/pkgs/development/python-modules/moderngl/default.nix
index f32f541573eb4..447d2b00b0197 100644
--- a/pkgs/development/python-modules/moderngl/default.nix
+++ b/pkgs/development/python-modules/moderngl/default.nix
@@ -4,6 +4,7 @@
 , isPy3k
 , libGL
 , libX11
+, glcontext
 }:
 
 buildPythonPackage rec {
@@ -17,7 +18,7 @@ buildPythonPackage rec {
 
   disabled = !isPy3k;
 
-  buildInputs = [ libGL libX11 ];
+  buildInputs = [ libGL libX11 glcontext ];
 
   # Tests need a display to run.
   doCheck = false;