diff options
author | Taylan Ulrich Bayırlı/Kammer <taylanbayirli@gmail.com> | 2015-03-21 19:36:25 +0100 |
---|---|---|
committer | Taylan Ulrich Bayırlı/Kammer <taylanbayirli@gmail.com> | 2015-03-27 19:39:30 +0100 |
commit | 9b5db9be7f109dbdeda56b42853550f7b749b385 (patch) | |
tree | 4d1ebb45f109b1b341762c625e45a9c0f9c8867b | |
parent | ee3b55ea6d68ee998ac183ab1cb6f02f18fc8ed8 (diff) | |
download | patches-9b5db9be7f109dbdeda56b42853550f7b749b385.tar patches-9b5db9be7f109dbdeda56b42853550f7b749b385.tar.gz |
gnu: freeglut: Add mesa to propagated inputs.
* gnu/packages/gl.scm (freeglut): Add mesa to propagated inputs.
-rw-r--r-- | gnu/packages/gl.scm | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gnu/packages/gl.scm b/gnu/packages/gl.scm index e9b2c535a8..dc90a1231d 100644 --- a/gnu/packages/gl.scm +++ b/gnu/packages/gl.scm @@ -84,7 +84,10 @@ as ASCII text.") ("libxxf86vm" ,libxxf86vm) ("inputproto" ,inputproto) ("xinput" ,xinput))) - (propagated-inputs `(("glu" ,glu))) + (propagated-inputs + ;; Headers from Mesa and GLU are needed. + `(("glu" ,glu) + ("mesa" ,mesa))) (home-page "http://freeglut.sourceforge.net/") (synopsis "Alternative to the OpenGL Utility Toolkit (GLUT)") (description |