diff options
author | Andreas Enge <andreas@enge.fr> | 2023-04-17 20:58:30 +0200 |
---|---|---|
committer | Andreas Enge <andreas@enge.fr> | 2023-04-17 20:58:30 +0200 |
commit | a6d2b54d3920d8858b5b36e4e4364088ed340107 (patch) | |
tree | a36701374fb147d8b92ac589468bc2c93b963ebc /gnu | |
parent | 216d7bdb738e05675bbb128d582851bdc9b85aaa (diff) |
gnu: Clean up merge errors.
* gnu/packages/gstreamer.scm (gst-plugins-base, gst-plugins-good,
gst-plugins-bad, gst-plugins-ugly, gst-editing-services, python-gst): Use
standard meson instead of non-existing meson-0.63.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/gstreamer.scm | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/gnu/packages/gstreamer.scm b/gnu/packages/gstreamer.scm index a04671beda..8971c11479 100644 --- a/gnu/packages/gstreamer.scm +++ b/gnu/packages/gstreamer.scm @@ -589,7 +589,6 @@ 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 @@ -655,7 +654,6 @@ 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 @@ -778,7 +776,6 @@ 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 @@ -957,8 +954,7 @@ par compared to the rest.") (base32 "1486x08bwasq6l7kc75nph5az61siq9mbgkgpw4kf1mxn16z8c4g")))) (build-system meson-build-system) (arguments - (list #:meson meson-0.63 - #:glib-or-gtk? #t ; To wrap binaries and/or compile schemas + (list #:glib-or-gtk? #t ; To wrap binaries and/or compile schemas #:phases #~(modify-phases %standard-phases #$@%common-gstreamer-phases @@ -1039,7 +1035,6 @@ 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 @@ -1108,7 +1103,6 @@ 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:)) |