mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-04 02:19:18 -05:00
gnu: gst-editing-services: Use new package style.
* gnu/packages/gstreamer.scm (gst-editing-services)[arguments]: Convert to list of G-Expressions. [native-inputs]: Drop labels.
This commit is contained in:
parent
43aeb00426
commit
759f9e7135
1 changed files with 13 additions and 13 deletions
|
@ -1002,24 +1002,24 @@ (define-public gst-editing-services
|
||||||
"18msiadg6wi1636ylp02yfiwphxlz39gh3vbxchl9qpvd7g9dn2z"))))
|
"18msiadg6wi1636ylp02yfiwphxlz39gh3vbxchl9qpvd7g9dn2z"))))
|
||||||
(build-system meson-build-system)
|
(build-system meson-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
;; FIXME: 16/22 failing tests.
|
(list
|
||||||
`(#:tests? #f
|
#:tests? #f ; FIXME: 16/22 failing tests.
|
||||||
#:glib-or-gtk? #t ; To wrap binaries and/or compile schemas
|
#: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
|
(propagated-inputs
|
||||||
(list gstreamer gst-plugins-base))
|
(list gstreamer gst-plugins-base))
|
||||||
(inputs
|
(inputs
|
||||||
(list glib glib-networking gtk+ libxml2))
|
(list glib glib-networking gtk+ libxml2))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("flex" ,flex)
|
(list flex
|
||||||
("gobject-introspection" ,gobject-introspection)
|
gobject-introspection
|
||||||
("glib:bin" ,glib "bin")
|
`(,glib "bin")
|
||||||
("gst-plugins-bad" ,gst-plugins-bad)
|
gst-plugins-bad
|
||||||
("gst-plugins-good" ,gst-plugins-good)
|
gst-plugins-good
|
||||||
("perl" ,perl)
|
perl
|
||||||
("pkg-config" ,pkg-config)
|
pkg-config
|
||||||
("python" ,python-wrapper)))
|
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
|
||||||
|
|
Loading…
Reference in a new issue