diff options
author | Andreas Enge <andreas@enge.fr> | 2013-11-23 18:16:03 +0100 |
---|---|---|
committer | Andreas Enge <andreas@enge.fr> | 2013-11-23 18:16:03 +0100 |
commit | 248c06454eb9c14966b6701a2de41dc7e3c62886 (patch) | |
tree | 9e2f21aff4bed70d5aa2bb0ba0406a0011c49cba /gnu/packages/gnunet.scm | |
parent | 5cf3bcd4fb96023a5c83fd5e26f9baa79ebc391a (diff) |
gnu: libextractor: Add optional inputs.
* gnu/packages/gnunet.scm (libextractor): Add inputs ffmpeg and gstreamer.
Diffstat (limited to 'gnu/packages/gnunet.scm')
-rw-r--r-- | gnu/packages/gnunet.scm | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/gnu/packages/gnunet.scm b/gnu/packages/gnunet.scm index 3eb953ca2d..45f638591b 100644 --- a/gnu/packages/gnunet.scm +++ b/gnu/packages/gnunet.scm @@ -25,11 +25,13 @@ #:use-module (gnu packages glib) #:use-module (gnu packages gnupg) #:use-module (gnu packages gnutls) + #:use-module (gnu packages gstreamer) #:use-module (gnu packages libjpeg) #:use-module (gnu packages libtiff) #:use-module (gnu packages oggvorbis) #:use-module (gnu packages openssl) #:use-module (gnu packages pkg-config) + #:use-module (gnu packages video) #:use-module ((guix licenses) #:renamer (symbol-prefix-proc 'license:)) #:use-module (guix packages) @@ -54,7 +56,6 @@ ;; The following dependencies are all optional, but should be ;; available for maximum coverage: ;; * libarchive - ;; * libavutil / libavformat / libavcodec / libswscale (ffmpeg) ;; * libexiv2 ;; * libgif (giflib) ;; * libgtk+ >= 3.0.0 (may probably drop glib then as a propagated input of @@ -70,7 +71,10 @@ (inputs `(("gettext" ,gnu:gettext) ("flac" ,flac) + ("ffmpeg" ,ffmpeg) ("glib" ,glib) + ("gstreamer" ,gstreamer) + ("gst-plugins-base" ,gst-plugins-base) ("libjpeg" ,libjpeg) ("libogg" ,libogg) ("libtiff" ,libtiff) |