me
/
guix
Archived
1
0
Fork 0

gnu: gst-editing-services: Update to 1.18.4.

* gnu/packages/gstreamer.scm (gst-editing-services)[version]: Update to 1.18.4.
[arguments](glib-or-gtk): New argument.
[inputs]: Add glib, glib-networking and gtk+. Move gst-plugins-base to ...
[propagated-inputs]: ... here. Add gstreamer.
[native-inputs]: Replace python with python-wrapper.

Co-authored-by: Leo Prikler <leo.prikler@student.tugraz.at>
master
Raghav Gururajan 2021-04-12 11:36:14 +02:00
parent ffc8b9e39e
commit afa439ebf9
No known key found for this signature in database
GPG Key ID: 5F5816647F8BE551
1 changed files with 10 additions and 4 deletions

View File

@ -988,7 +988,7 @@ decoders, muxers, and demuxers provided by FFmpeg.")
(define-public gst-editing-services (define-public gst-editing-services
(package (package
(name "gst-editing-services") (name "gst-editing-services")
(version "1.18.2") (version "1.18.4")
(source (origin (source (origin
(method url-fetch) (method url-fetch)
(uri (string-append (uri (string-append
@ -996,15 +996,21 @@ decoders, muxers, and demuxers provided by FFmpeg.")
"gst-editing-services-" version ".tar.xz")) "gst-editing-services-" version ".tar.xz"))
(sha256 (sha256
(base32 (base32
"0pv2k8zlpn3vv2sdlspi3m63ixcwzi90pjly2ypbkg59ab97rb15")))) "010xg960qsh5dwmf0y9l1q13h0cymmrgapzla2zsw66ylxqbi1s6"))))
(build-system meson-build-system) (build-system meson-build-system)
(arguments (arguments
;; FIXME: 16/22 failing tests. ;; FIXME: 16/22 failing tests.
`(#:tests? #f `(#:tests? #f
#:glib-or-gtk? #t ; To wrap binaries and/or compile schemas
#:phases (modify-phases %standard-phases #:phases (modify-phases %standard-phases
,@%common-gstreamer-phases))) ,@%common-gstreamer-phases)))
(propagated-inputs
`(("gstreamer" ,gstreamer)
("gst-plugins-base" ,gst-plugins-base)))
(inputs (inputs
`(("gst-plugins-base" ,gst-plugins-base) `(("glib" ,glib)
("glib-networking" ,glib-networking)
("gtk+" ,gtk+)
("libxml2" ,libxml2))) ("libxml2" ,libxml2)))
(native-inputs (native-inputs
`(("flex" ,flex) `(("flex" ,flex)
@ -1014,7 +1020,7 @@ decoders, muxers, and demuxers provided by FFmpeg.")
("gst-plugins-good" ,gst-plugins-good) ("gst-plugins-good" ,gst-plugins-good)
("perl" ,perl) ("perl" ,perl)
("pkg-config" ,pkg-config) ("pkg-config" ,pkg-config)
("python" ,python))) ("python" ,python-wrapper)))
(home-page "https://gstreamer.freedesktop.org/") (home-page "https://gstreamer.freedesktop.org/")
(synopsis "GStreamer library for non-linear editors") (synopsis "GStreamer library for non-linear editors")
(description (description