diff options
author | Giacomo Leidi <goodoldpaul@autistici.org> | 2024-11-07 23:22:15 +0100 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2025-01-06 12:15:38 +0200 |
commit | 958d0b505fa739933dc5b5a7222c9a6c443a19d3 (patch) | |
tree | 31a18f19bbe974089d67051244d0ba854e4d8729 /gnu/packages/crates-gtk.scm | |
parent | b5832d8d3087cf5e20ecefa2c0858c9e141d8599 (diff) |
gnu: Add rust-gstreamer-gl-egl-0.21.
* gnu/packages/crates-gtk.scm (rust-gstreamer-gl-egl-0.21): New variable.
Change-Id: If3134f9e3913afa93a353252f62e09c04b8c577d
Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
Diffstat (limited to 'gnu/packages/crates-gtk.scm')
-rw-r--r-- | gnu/packages/crates-gtk.scm | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/gnu/packages/crates-gtk.scm b/gnu/packages/crates-gtk.scm index 8dca66cac4..ee564fd0f7 100644 --- a/gnu/packages/crates-gtk.scm +++ b/gnu/packages/crates-gtk.scm @@ -3493,6 +3493,35 @@ (description "This package provides FFI bindings to libgstgl-1.0.") (license license:expat))) +(define-public rust-gstreamer-gl-egl-0.21 + (package + (name "rust-gstreamer-gl-egl") + (version "0.21.2") + (source + (origin + (method url-fetch) + (uri (crate-uri "gstreamer-gl-egl" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "10nwlmyw1z4jccyrbqijx6iny2c64164jaz05dgnvi5378ianwx1")))) + (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-egl-sys" ,rust-gstreamer-gl-egl-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 (EGL support)") + (description + "This package provides Rust bindings for GStreamer GL library (EGL support).") + (license (list license:expat license:asl2.0)))) + (define-public rust-gstreamer-gl-egl-sys-0.21 (package (name "rust-gstreamer-gl-egl-sys") |