gnu: glfw: Propagate the relevant inputs.

* gnu/packages/gl.scm (glfw)[inputs]: Rename to...
[propagated-inputs]: ... this.  Add LIBXXF86VM.
This commit is contained in:
Ludovic Courtès 2016-10-18 23:40:54 +02:00
parent 7fee5b5397
commit a966281f2d
No known key found for this signature in database
GPG key ID: 090B11993D9AEBB5

View file

@ -561,12 +561,15 @@ (define-public glfw
(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