guix-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[PATCH] gnu: Add gst-plugins-ugly


From: Mark H Weaver
Subject: [PATCH] gnu: Add gst-plugins-ugly
Date: Tue, 07 Jul 2015 10:59:26 -0400
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/24.5 (gnu/linux)

David Hashe <address@hidden> writes:

> Thanks for clarifying. Besides patents, my other concern was
> licensing. Specifically, the page I linked about gst-plugins-ugly
> includes the following:
>
> The license on either the plug-ins or the supporting libraries might
> not be how we'd like.

Yes, we'll need to investigate this.

> Rather vague, but a bit worrying. However, you're right that Debian
> includes it, as do Trisquel and Parabola (both free distributions), so
> I agree that this is probably something we can include.

I looked in Parabola's blacklist
<https://projects.parabola.nu/blacklist.git/tree/> and didn't find
issues listed with gst-plugins-ugly, so I guess that's a good sign.

I've attached a preliminary 'gst-plugins-ugly' package for Guix.  Note
that this depends on commit 23da88f61e82e2b32d6dedb3af467f665cd03bf5
"gnu: liba52: Build shared library", which I pushed to master just a few
minutes ago.

      Mark


>From d50c79a3e4dd416e8ac747e1375b987500783d34 Mon Sep 17 00:00:00 2001
From: Mark H Weaver <address@hidden>
Date: Tue, 7 Jul 2015 02:36:18 -0400
Subject: [PATCH] gnu: Add gst-plugins-ugly.

* gnu/packages/gstreamer.scm (gst-plugins-ugly): New variable.
---
 gnu/packages/gstreamer.scm | 44 ++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 44 insertions(+)

diff --git a/gnu/packages/gstreamer.scm b/gnu/packages/gstreamer.scm
index 0f3a0fb..2130678 100644
--- a/gnu/packages/gstreamer.scm
+++ b/gnu/packages/gstreamer.scm
@@ -243,6 +243,50 @@ GStreamer multimedia library.  This set contains those 
plug-ins which the
 developers consider to have good quality code and correct functionality.")
     (license lgpl2.0+)))
 
+(define-public gst-plugins-ugly
+  (package
+    (name "gst-plugins-ugly")
+    (version "1.4.5")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append 
+             
"http://gstreamer.freedesktop.org/src/gst-plugins-ugly/gst-plugins-ugly-";
+             version ".tar.xz"))
+       (sha256
+        (base32
+         "0rwhljn3f8mp2pfchzfcx4pvps1546dndw9mr56lz50qyqffimaw"))))
+    (build-system gnu-build-system)
+    (inputs
+     `(("gst-plugins-base" ,gst-plugins-base)
+       ("liba52" ,liba52)
+       ("libmad" ,libmad)
+       ("lame" ,lame)
+       ("libcdio" ,libcdio)             ; XXX what about libcdio-paranoia(?)
+       ("twolame" ,twolame)
+       ;; TODO:
+       ;; * opencore-amr (for the AMR-NB decoder and encoder and the
+       ;;   AMR-WB decoder) <http://sourceforge.net/projects/opencore-amr/>
+       ;; * libdvdread (for the dvdreadsrc)
+       ;;   <http://www.dtek.chalmers.se/groups/dvd/>
+       ;;   (optional: libcss for encrypted DVDs)
+       ;; * mpeg2dec (for mpeg2 related plugins and dvd playback)
+       ;;   <http://libmpeg2.sourceforge.net/>
+       ;; * x264 (for the x264enc H.264 encoder)
+       ;;   <http://www.videolan.org/developers/x264.html>
+       ("orc" ,orc)))
+    (native-inputs
+     `(("glib:bin" ,glib "bin")
+       ("pkg-config" ,pkg-config)
+       ("python-wrapper" ,python-wrapper)))
+    (home-page "http://gstreamer.freedesktop.org/";)
+    (synopsis
+     "GStreamer plugins from the \"ugly\" set.")
+    (description "GStreamer Ugly Plug-ins.  This set contains those plug-ins
+which the developers consider to have good quality code but that might pose
+distribution problems in some jurisdictions, e.g. due to patent threats.")
+    (license lgpl2.0+)))
+
 (define-public gst-libav
   (package
     (name "gst-libav")
-- 
2.4.3


reply via email to

[Prev in Thread] Current Thread [Next in Thread]