me
/
guix
Archived
1
0
Fork 0

gnu: Add gst-plugins/selection.

* gnu/packages/gstreamer.scm (gst-plugins/selection): New variable.
master
Leo Prikler 2020-11-22 18:54:14 +01:00
parent 251e86823f
commit 4f196b0a9e
No known key found for this signature in database
GPG Key ID: 442A84B8C70E2F87
1 changed files with 22 additions and 0 deletions

View File

@ -912,6 +912,28 @@ decoders, muxers, and demuxers provided by FFmpeg.")
non-linear editors.")
(license license:gpl2+)))
(define-public gst-plugins/selection
(lambda* (pkg #:key plugins configure-flags)
"Build PKG with only PLUGINS enabled. Optionally, if CONFIGURE-FLAGS are
given, also pass them to the build system instead of the ones used by PKG."
(package/inherit pkg
(arguments
(substitute-keyword-arguments (package-arguments pkg)
((#:configure-flags flags `(,@(or configure-flags '())))
`(append
(list
,@(map (lambda (plugin)
(string-append "-D" plugin "=enabled"))
plugins))
(list ,@(or configure-flags flags))))
((#:phases phases)
`(modify-phases ,phases
(add-after 'unpack 'disable-auto-plugins
(lambda _
(substitute* "meson_options.txt"
(("'auto'") "'disabled'"))
#t)))))))))
(define-public python-gst
(package
(name "python-gst")