mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-31 23:06:59 +01:00
gnu: rust-wayland-egl: Add 0.29.4.
* gnu/packages/crates-graphics.scm (rust-wayland-egl-0.29): New variable. (rust-wayland-egl-0.28): Inherit from it.
This commit is contained in:
parent
a9107f2703
commit
4c980a2b9a
1 changed files with 28 additions and 10 deletions
|
@ -2655,8 +2655,35 @@ (define-public rust-wayland-cursor-0.28
|
||||||
properly display animated cursors.")
|
properly display animated cursors.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define-public rust-wayland-egl-0.29
|
||||||
|
(package
|
||||||
|
(name "rust-wayland-egl")
|
||||||
|
(version "0.29.4")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (crate-uri "wayland-egl" version))
|
||||||
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32 "0flslbp8q4nv3hcw941vapn3jh6y7glqaqv63h1mjaqnxrlisa43"))))
|
||||||
|
(build-system cargo-build-system)
|
||||||
|
(inputs
|
||||||
|
(list rust-wayland-client-0.29 rust-wayland-sys-0.29))
|
||||||
|
;; For the PKG_CONFIG_PATH environment variable.
|
||||||
|
(native-inputs
|
||||||
|
(list pkg-config))
|
||||||
|
(home-page "https://github.com/smithay/wayland-rs")
|
||||||
|
(synopsis "Bindings to libwayland-egl")
|
||||||
|
(description
|
||||||
|
"This crate provides bindings for OpenGL/Vulkan support for
|
||||||
|
Wayland client apps. It creates an EGLSurface from any
|
||||||
|
WlSurface, which can then play the role of the base surface for
|
||||||
|
initializing an OpenGL or Vulkan context.")
|
||||||
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public rust-wayland-egl-0.28
|
(define-public rust-wayland-egl-0.28
|
||||||
(package
|
(package
|
||||||
|
(inherit rust-wayland-egl-0.29)
|
||||||
(name "rust-wayland-egl")
|
(name "rust-wayland-egl")
|
||||||
(version "0.28.3")
|
(version "0.28.3")
|
||||||
(source
|
(source
|
||||||
|
@ -2669,17 +2696,8 @@ (define-public rust-wayland-egl-0.28
|
||||||
(build-system cargo-build-system)
|
(build-system cargo-build-system)
|
||||||
(inputs
|
(inputs
|
||||||
(list rust-wayland-client-0.28 rust-wayland-sys-0.28))
|
(list rust-wayland-client-0.28 rust-wayland-sys-0.28))
|
||||||
;; For the PKG_CONFIG_PATH environment variable.
|
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list pkg-config))
|
(list pkg-config))))
|
||||||
(home-page "https://github.com/smithay/wayland-rs")
|
|
||||||
(synopsis "Bindings to libwayland-egl")
|
|
||||||
(description
|
|
||||||
"This crate provides bindings for OpenGL/Vulkan support for
|
|
||||||
Wayland client apps. It creates an EGLSurface from any
|
|
||||||
WlSurface, which can then play the role of the base surface for
|
|
||||||
initializing an OpenGL or Vulkan context.")
|
|
||||||
(license license:expat)))
|
|
||||||
|
|
||||||
(define-public rust-wayland-protocols-0.29
|
(define-public rust-wayland-protocols-0.29
|
||||||
(package
|
(package
|
||||||
|
|
Loading…
Reference in a new issue