diff options
author | Liliana Marie Prikler <liliana.prikler@gmail.com> | 2022-06-28 20:59:09 +0200 |
---|---|---|
committer | Liliana Marie Prikler <liliana.prikler@gmail.com> | 2022-07-28 20:52:13 +0200 |
commit | 98f170e61cb8d6d093e7c6f9f6338d00f3957f4c (patch) | |
tree | 234de645db0241c952b60b5e2627b6b5f6d8f0b8 /gnu/packages | |
parent | f1fdde3c4504d6e4ffddeff94f69c3f07ed13b2f (diff) | |
download | guix-98f170e61cb8d6d093e7c6f9f6338d00f3957f4c.tar.gz guix-98f170e61cb8d6d093e7c6f9f6338d00f3957f4c.zip |
gnu: Add gst-plugins-bad-minimal.
* gnu/packages/gstreamer.scm (gst-plugins-bad-minimal): New variable.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/gstreamer.scm | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/gnu/packages/gstreamer.scm b/gnu/packages/gstreamer.scm index d58db086af..a18f386bcc 100644 --- a/gnu/packages/gstreamer.scm +++ b/gnu/packages/gstreamer.scm @@ -1050,6 +1050,14 @@ given, also pass them to the build system instead of the ones used by PKG." (substitute* "meson_options.txt" (("'auto'") "'disabled'"))))))))))) +(define-public gst-plugins-bad-minimal + (package + (inherit (gst-plugins/selection gst-plugins-bad #:plugins '())) + (name "gst-plugins-bad-minimal") + (description "This package provides the smallest selection of GStreamer's +\"bad\" plugin set, essentially containing libraries and the gst-transcoder +binary, but none of the actual plugins."))) + (define-public python-gst (package (name "python-gst") |