1
Fork 0
mirror of https://https.git.savannah.gnu.org/git/guix.git/ synced 2025-07-16 20:10:39 +02:00

gnu: Add rust-gstreamer-gl-wayland-0.21.

* gnu/packages/crates-gtk.scm (rust-gstreamer-gl-wayland-0.21): New variable.

Change-Id: I888fa937a7df7bfa913801e66019459f30b27719
Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
This commit is contained in:
Giacomo Leidi 2024-11-07 23:22:17 +01:00 committed by Efraim Flashner
parent a2e15fc5a1
commit 1acd053b5a
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -3549,6 +3549,35 @@
"This package provides FFI bindings to libgstgl-1.0 (EGL support).")
(license license:expat)))
(define-public rust-gstreamer-gl-wayland-0.21
(package
(name "rust-gstreamer-gl-wayland")
(version "0.21.1")
(source
(origin
(method url-fetch)
(uri (crate-uri "gstreamer-gl-wayland" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "1zz7as2qlf021dvpy1qs4rbahf94p6jb1msmfsgx08nhyai7dhpy"))))
(build-system cargo-build-system)
(arguments
`(#:cargo-inputs
(("rust-glib" ,rust-glib-0.18)
("rust-gstreamer" ,rust-gstreamer-0.21)
("rust-gstreamer-gl" ,rust-gstreamer-gl-0.21)
("rust-gstreamer-gl-wayland-sys" ,rust-gstreamer-gl-wayland-sys-0.21)
("rust-libc" ,rust-libc-0.2))
#:cargo-development-inputs
(("rust-gir-format-check" ,rust-gir-format-check-0.1))))
(native-inputs (list pkg-config))
(inputs (list glib gstreamer gst-plugins-base mesa))
(home-page "https://gstreamer.freedesktop.org")
(synopsis "Rust bindings for GStreamer GL library (Wayland support)")
(description
"This package provides Rust bindings for GStreamer GL library (Wayland support).")
(license (list license:expat license:asl2.0))))
(define-public rust-gstreamer-gl-wayland-sys-0.21
(package
(name "rust-gstreamer-gl-wayland-sys")