diff options
author | Leo Famulari <leo@famulari.name> | 2021-11-24 16:12:11 -0500 |
---|---|---|
committer | Leo Famulari <leo@famulari.name> | 2021-11-24 17:27:52 -0500 |
commit | edb563d1366ffa90f8717e3682bf1f97c53af0c1 (patch) | |
tree | 736ba0697bcef2189043455d54bf395d2fbaeef4 /gnu/packages | |
parent | 3e810b846ab10eca86f8c6c7a3815954f1b77ebd (diff) | |
download | guix-edb563d1366ffa90f8717e3682bf1f97c53af0c1.tar.gz guix-edb563d1366ffa90f8717e3682bf1f97c53af0c1.zip |
gnu: pitivi: Fix build.
* gnu/packages/video.scm (pitivi)[inputs]: Adjust arguments to
gst-plugins-bad variant.
[arguments]: Use meson-0.59.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/video.scm | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm index 8b1efa656d..b4b5800140 100644 --- a/gnu/packages/video.scm +++ b/gnu/packages/video.scm @@ -103,6 +103,7 @@ #:use-module (gnu packages base) #:use-module (gnu packages bison) #:use-module (gnu packages boost) + #:use-module (gnu packages build-tools) #:use-module (gnu packages cdrom) #:use-module (gnu packages check) #:use-module (gnu packages cmake) @@ -4385,7 +4386,7 @@ tools for styling them, including a built-in real-time video preview.") ("gst-plugins-good" ,gst-plugins-good) ("gst-plugins-bad" ,(gst-plugins/selection gst-plugins-bad - #:plugins '("debugutils" "transcoder") + #:plugins '("debugutils" "transcode") #:configure-flags '("-Dintrospection=enabled"))) ("gst-libav" ,gst-libav) ("gsound" ,gsound) @@ -4406,6 +4407,9 @@ tools for styling them, including a built-in real-time video preview.") ("pkg-config" ,pkg-config))) (arguments `(#:glib-or-gtk? #t + ;; Pitivi is not yet compatible with Meson 0.60: + ;; https://gitlab.gnome.org/GNOME/pitivi/-/issues/2593 + #:meson ,meson-0.59 #:phases (modify-phases %standard-phases (add-after 'glib-or-gtk-wrap 'wrap-other-dependencies |