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:
Artyom V. Poptsov 2024-07-13 14:13:12 +03:00 committed by Sharlatan Hellseher
parent fe7c622ab0
commit f3a2cf6643
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -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")