me
/
guix
Archived
1
0
Fork 0

gnu: egl-wayland: Update to 1.1.9.

* gnu/packages/xorg.scm (egl-wayland): Update to 1.1.9.
[native-inputs]: Add libglvnd and mesa-headers.
[inputs]: Add wayland-protocols.
master
Maxim Cournoyer 2021-11-14 00:29:00 -05:00
parent 0184192e24
commit 6cec904665
No known key found for this signature in database
GPG Key ID: 1260E46482E63562
1 changed files with 7 additions and 4 deletions

View File

@ -5577,7 +5577,7 @@ application-facing EGL functions.")
(define-public egl-wayland
(package
(name "egl-wayland")
(version "1.1.7")
(version "1.1.9")
(source
(origin
(method git-fetch)
@ -5586,13 +5586,16 @@ application-facing EGL functions.")
(commit version)))
(file-name (git-file-name name version))
(sha256
(base32 "0xcx1132zwyp4qps074m72ngjlfmysi1jc2d0lp1ml1r9bllkam6"))))
(base32 "1iz86cpc4v7izckrcslllnw0vvvgsxg1sr65yb8s9d0f8xa8djdd"))))
(build-system meson-build-system)
(native-inputs
`(("pkg-config" ,pkg-config)))
`(("libglvnd" ,libglvnd) ;needed for headers
("mesa-headers" ,mesa-headers)
("pkg-config" ,pkg-config)))
(inputs
`(("mesa" ,mesa)
("wayland" ,wayland)))
("wayland" ,wayland)
("wayland-protocols" ,wayland-protocols)))
(propagated-inputs
`(("eglexternalplatform" ,eglexternalplatform)))
(synopsis "EGLStream-based Wayland external platform")