summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorLiliana Marie Prikler <liliana.prikler@gmail.com>2025-04-12 10:42:33 +0200
committerMaxim Cournoyer <maxim@guixotic.coop>2025-09-30 16:48:22 +0900
commit6249da301b5efd32b7bc32a4889fd1a2c0a2eba5 (patch)
treeb45a07c506f18136c90450b02680873ab27e50be /gnu
parent78a9b51d411b72dc8513d27ab5dbd9e96bc29550 (diff)
gnu: gst-plugins-bad: Update to 1.26.3.
* gnu/packages/gstreamer.scm (gst-plugins-bad): Update to 1.26.3. [adjust-tests]: Also disable “elements_vkcolorconvert” and “elements_vkupload”. (cherry picked from commit 82e2d85db5b1ee8cf617d2e4302a350ea6f08cf6)
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/gstreamer.scm12
1 files changed, 9 insertions, 3 deletions
diff --git a/gnu/packages/gstreamer.scm b/gnu/packages/gstreamer.scm
index f339cc13843..6e5cbb2ab90 100644
--- a/gnu/packages/gstreamer.scm
+++ b/gnu/packages/gstreamer.scm
@@ -743,14 +743,14 @@ model to base your own plug-in on, here it is.")
743(define-public gst-plugins-bad 743(define-public gst-plugins-bad
744 (package 744 (package
745 (name "gst-plugins-bad") 745 (name "gst-plugins-bad")
746 (version "1.24.9") 746 (version "1.26.3")
747 (source (origin 747 (source (origin
748 (method url-fetch) 748 (method url-fetch)
749 (uri (string-append "https://gstreamer.freedesktop.org/src/" 749 (uri (string-append "https://gstreamer.freedesktop.org/src/"
750 name "/" name "-" version ".tar.xz")) 750 name "/" name "-" version ".tar.xz"))
751 (sha256 751 (sha256
752 (base32 752 (base32
753 "1aswb97v1ird3rmfcsa32bvp4kgp8r987f83pd1knx8amylzgz1n")) 753 "0qbmblksgl2nmbi6brw54b1bzziw9flvqk2zb576y9qlmyn8vi4m"))
754 (modules '((guix build utils))) 754 (modules '((guix build utils)))
755 (snippet 755 (snippet
756 '(begin 756 '(begin
@@ -814,7 +814,13 @@ model to base your own plug-in on, here it is.")
814 ((".*elements/dtls\\.c.*") "") 814 ((".*elements/dtls\\.c.*") "")
815 815
816 ;; https://gitlab.freedesktop.org/gstreamer/gstreamer/-/issues/3921 816 ;; https://gitlab.freedesktop.org/gstreamer/gstreamer/-/issues/3921
817 ((".*elements/mxfdemux\\.c.*") "")) 817 ((".*elements/mxfdemux\\.c.*") "")
818
819 ;; Unable to create pipeline 'bin.
820 ;; ( vulkanupload ! vulkancolorconvert ! vulkandownload )':
821 ;; no element "vulkanupload"
822 ((".*elements/vkcolorconvert\\.c.*") "")
823 ((".*elements/vkupload\\.c.*") ""))
818 (substitute* "tests/check/elements/zxing.c" 824 (substitute* "tests/check/elements/zxing.c"
819 ;; zxing 1.2.0 seemingly changed the type representation of 825 ;; zxing 1.2.0 seemingly changed the type representation of
820 ;; the EAN_13 structure; disable it. 826 ;; the EAN_13 structure; disable it.