diff options
author | Christopher Baines <mail@cbaines.net> | 2021-02-11 20:01:00 +0000 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2021-02-13 08:43:52 +0000 |
commit | 2ebd74c33c13d604a5e423520a648728b8d49f9f (patch) | |
tree | 5759d5ab91f508f4f5732b6788604f601c118a75 | |
parent | a2aacf18f59cf7a3e08c74e0ee74ed04594fd7a0 (diff) | |
download | guix-fix-cheese-performance.tar guix-fix-cheese-performance.tar.gz |
gnu: cheese: Add gst-plugins-good as an input.fix-cheese-performance
This fixes an issue with choppy video recording. It also makes these lines not
appear in the build log:
meson.build:154: WARNING: vp8enc was not found. It needs to be installed before Cheese is run
meson.build:154: WARNING: webmmux was not found. It needs to be installed
before Cheese is run
* gnu/packages/gnome.scm (cheese)[inputs]: Add gst-plugins-good.
-rw-r--r-- | gnu/packages/gnome.scm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index c5c6b4dd8f..f7838f85a5 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -10400,6 +10400,7 @@ photo-booth-like software, such as Cheese.") `(("gnome-desktop" ,gnome-desktop) ("gobject-introspection" ,gobject-introspection) ("gst-plugins-base" ,gst-plugins-base) + ("gst-plugins-good" ,gst-plugins-good) ("gst-plugins-bad" ,gst-plugins-bad) ("gtk+" ,gtk+) ("libx11" ,libx11) |