mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-11 13:49:23 -05:00
gnu: glfw-3.4: New variable.
* gnu/packages/gl.scm (glfw-3.4): New variable. Change-Id: I77f2214c78f35455436897a3fbff083331295314 Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
This commit is contained in:
parent
fe7c622ab0
commit
f3a2cf6643
1 changed files with 15 additions and 0 deletions
|
@ -995,6 +995,21 @@ (define-public glfw
|
|||
and surfaces, receiving input and events.")
|
||||
(license license:zlib)))
|
||||
|
||||
(define-public glfw-3.4
|
||||
(package
|
||||
(inherit glfw)
|
||||
(version "3.4")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "https://github.com/glfw/glfw"
|
||||
"/releases/download/" version
|
||||
"/glfw-" version ".zip"))
|
||||
(sha256
|
||||
(base32
|
||||
"1sd396kkn53myp61kxrd18h7b1q4ix173hhxhvl0iz8j4x5h1v5m"))))
|
||||
(native-inputs (modify-inputs (package-native-inputs glfw)
|
||||
(prepend pkg-config)))))
|
||||
|
||||
(define-public nanovg-for-extempore
|
||||
(let ((version "0.7.1")
|
||||
(revision "0")
|
||||
|
|
Loading…
Reference in a new issue