civodul pushed a commit to branch master
in repository guix.
commit a966281f2da1a8b6bc45cbd208c28e39b05a0373
Author: Ludovic Courtès <[email protected]>
Date: Tue Oct 18 23:40:54 2016 +0200
gnu: glfw: Propagate the relevant inputs.
* gnu/packages/gl.scm (glfw)[inputs]: Rename to...
[propagated-inputs]: ... this. Add LIBXXF86VM.
---
gnu/packages/gl.scm | 9 ++++++---
1 file changed, 6 insertions(+), 3 deletions(-)
diff --git a/gnu/packages/gl.scm b/gnu/packages/gl.scm
index a4ec3a3..c40d100 100644
--- a/gnu/packages/gl.scm
+++ b/gnu/packages/gl.scm
@@ -561,12 +561,15 @@ OpenGL.")
(native-inputs
`(("doxygen" ,doxygen)
("unzip" ,unzip)))
- (inputs
- `(("mesa" ,mesa)
+ (propagated-inputs
+ `(("mesa" ,mesa) ;included in public headers
+
+ ;; These are in 'Requires.private' of 'glfw3.pc'.
("libx11" ,libx11)
("libxrandr" ,libxrandr)
("libxinerama" ,libxinerama)
- ("libxcursor" ,libxcursor)))
+ ("libxcursor" ,libxcursor)
+ ("libxxf86vm" ,libxxf86vm)))
(home-page "http://www.glfw.org")
(synopsis "OpenGL application development library")
(description