diff options
author | Andreas Enge <andreas@enge.fr> | 2023-04-17 19:17:39 +0200 |
---|---|---|
committer | Andreas Enge <andreas@enge.fr> | 2023-04-17 19:17:39 +0200 |
commit | 216d7bdb738e05675bbb128d582851bdc9b85aaa (patch) | |
tree | 0535efa1427ebc5b14ac10ccf03be17673a8c909 /gnu/packages/gstreamer.scm | |
parent | d3c7ca3c40fd613cfb3fb8f41e8ea064b438414a (diff) | |
parent | 50dd91bc30634c75c0001cfd38bbcc2fbbeb894e (diff) | |
download | guix-216d7bdb738e05675bbb128d582851bdc9b85aaa.tar.gz |
Merge remote-tracking branch 'origin/master' into core-updates
Diffstat (limited to 'gnu/packages/gstreamer.scm')
-rw-r--r-- | gnu/packages/gstreamer.scm | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/gnu/packages/gstreamer.scm b/gnu/packages/gstreamer.scm index 8971c11479..a04671beda 100644 --- a/gnu/packages/gstreamer.scm +++ b/gnu/packages/gstreamer.scm @@ -589,6 +589,7 @@ This package provides the core library and elements.") xorg-server-for-tests)) (arguments (list + #:meson meson-0.63 #:phases #~(modify-phases %standard-phases #$@%common-gstreamer-phases @@ -654,6 +655,7 @@ for the GStreamer multimedia library.") (build-system meson-build-system) (arguments (list + #:meson meson-0.63 #:glib-or-gtk? #t ; To wrap binaries and/or compile schemas #:phases #~(modify-phases %standard-phases @@ -776,6 +778,7 @@ model to base your own plug-in on, here it is.") (build-system meson-build-system) (arguments (list + #:meson meson-0.63 #:configure-flags #~(list "-Dsctp-internal-usrsctp=disabled") #:glib-or-gtk? #t ; To wrap binaries and/or compile schemas #:phases @@ -954,7 +957,8 @@ par compared to the rest.") (base32 "1486x08bwasq6l7kc75nph5az61siq9mbgkgpw4kf1mxn16z8c4g")))) (build-system meson-build-system) (arguments - (list #:glib-or-gtk? #t ; To wrap binaries and/or compile schemas + (list #:meson meson-0.63 + #:glib-or-gtk? #t ; To wrap binaries and/or compile schemas #:phases #~(modify-phases %standard-phases #$@%common-gstreamer-phases @@ -1035,6 +1039,7 @@ decoders, muxers, and demuxers provided by FFmpeg.") (build-system meson-build-system) (arguments (list + #:meson meson-0.63 #:tests? #f ; FIXME: 16/23 failing tests. #:glib-or-gtk? #t ; To wrap binaries and/or compile schemas #:phases #~(modify-phases %standard-phases @@ -1103,6 +1108,7 @@ binary, but none of the actual plugins."))) (build-system meson-build-system) (arguments (list + #:meson meson-0.63 #:modules `((guix build meson-build-system) (guix build utils) ((guix build python-build-system) #:prefix python:)) |