From a4d891361327a47352429c751198210c0f8fc3b1 Mon Sep 17 00:00:00 2001 From: John Darrington Date: Wed, 19 Nov 2014 15:15:30 +0100 Subject: gnu: gst-plugins-good: Enable more plugins * gnu/packages/gstreamer.scm (gst-plugins-good): New inputs: cairo, gdk-pixbuf, flac, speex, libogg, libx11, zlib, libpng, libjpeg, libXext, libxv, pulseaudio. --- gnu/packages/gstreamer.scm | 26 ++++++++++++++++++++++---- 1 file changed, 22 insertions(+), 4 deletions(-) (limited to 'gnu/packages') diff --git a/gnu/packages/gstreamer.scm b/gnu/packages/gstreamer.scm index aeccf7a064..003b78a0cf 100644 --- a/gnu/packages/gstreamer.scm +++ b/gnu/packages/gstreamer.scm @@ -28,8 +28,10 @@ (define-module (gnu packages gstreamer) #:use-module (gnu packages flex) #:use-module (gnu packages glib) #:use-module (gnu packages gtk) + #:use-module (gnu packages image) #:use-module (gnu packages linux) #:use-module (gnu packages perl) + #:use-module (gnu packages pulseaudio) #:use-module (gnu packages xorg) #:use-module (gnu packages xiph) #:use-module (gnu packages pkg-config) @@ -155,22 +157,38 @@ (define-public gst-plugins-good (source (origin (method url-fetch) - (uri (string-append "http://gstreamer.freedesktop.org/src/gst-plugins-good/gst-plugins-good-" - version ".tar.xz")) + (uri (string-append + "http://gstreamer.freedesktop.org/src/gst-plugins-good/gst-plugins-good-" + version ".tar.xz")) (sha256 (base32 "1bi8ci0jssi8bsa7wbmqcwphl579vvxpshn2qnaggiha13b440y6")))) (build-system gnu-build-system) (inputs `(("glib" ,glib) + ("cairo" ,cairo) + ("gdk-pixbuf" ,gdk-pixbuf) + ("flac" ,flac) + ("speex" ,speex) + ("libogg" ,libogg) ;; should be a propagated input of the above + ("libx11" ,libx11) + ("zlib" ,zlib) + ("libpng" ,libpng) + ("libjpeg" ,libjpeg) + ("libXext" ,libxext) + ("libxv" ,libxv) + ("pulseaudio" ,pulseaudio) ("gstreamer" ,gstreamer))) (native-inputs `(("pkg-config" ,pkg-config) ("glib" ,glib "bin") ("gst-plugins-base" ,gst-plugins-base) ("python-wrapper" ,python-wrapper))) - (arguments - `(#:tests? #f)) + (arguments + `(#:configure-flags (list "--disable-osx_audio" + "--disable-osx_video" + "--disable-directsound" + "--disable-waveform"))) (home-page "http://gstreamer.freedesktop.org/") (synopsis "Plugins for the GStreamer multimedia library") -- cgit v1.2.3