diff options
author | Giacomo Leidi <goodoldpaul@autistici.org> | 2024-11-07 23:22:23 +0100 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2025-01-06 12:15:39 +0200 |
commit | f3c421b1902194a3bf0e552010cdfde64aa66729 (patch) | |
tree | 64b9442850f985add43e60bca84a20f19c5b4bc1 /gnu/packages/crates-gtk.scm | |
parent | 6ef633d12a7390cc91d8e70a3c7a2047fb1bb75a (diff) |
gnu: Add rust-gst-plugin-gtk4-0.11.
* gnu/packages/crates-gtk.scm (rust-gst-plugin-gtk4-0.11): New variable.
Change-Id: Ifca9d748d758625344bb0846e01c2bae20685009
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 | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/gnu/packages/crates-gtk.scm b/gnu/packages/crates-gtk.scm index 01464a1069..116ca40817 100644 --- a/gnu/packages/crates-gtk.scm +++ b/gnu/packages/crates-gtk.scm @@ -2979,6 +2979,44 @@ #:cargo-development-inputs (("rust-shell-words" ,rust-shell-words-1) ("rust-tempfile" ,rust-tempfile-3)))))) +(define-public rust-gst-plugin-gtk4-0.11 + (package + (name "rust-gst-plugin-gtk4") + (version "0.11.4") + (source + (origin + (method url-fetch) + (uri (crate-uri "gst-plugin-gtk4" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "1hmky9p16hnhrwm5i63ynlwfl1bpc9fp3as5ibrni1qlfq0vhwdj")))) + (build-system cargo-build-system) + (arguments + (list + #:cargo-inputs (list rust-async-channel-2 + rust-gdk4-wayland-0.7 + rust-gdk4-win32-0.7 + rust-gdk4-x11-0.7 + rust-gst-plugin-version-helper-0.8 + rust-gstreamer-0.21 + rust-gstreamer-allocators-0.21 + rust-gstreamer-base-0.21 + rust-gstreamer-gl-0.21 + rust-gstreamer-gl-egl-0.21 + rust-gstreamer-gl-wayland-0.21 + rust-gstreamer-gl-x11-0.21 + rust-gstreamer-video-0.21 + rust-gtk4-0.7 + rust-once-cell-1 + rust-windows-sys-0.52))) + (native-inputs (list pkg-config)) + (inputs (list gdk-pixbuf glib graphene gstreamer gst-plugins-base + gtk pango)) + (home-page "https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs") + (synopsis "GStreamer GTK 4 sink element") + (description "This package provides GStreamer GTK 4 sink element.") + (license license:mpl2.0))) + (define-public rust-gst-plugin-version-helper-0.8 (package (name "rust-gst-plugin-version-helper") |