Author: eelco
Date: Mon Jul 25 20:10:45 2011
New Revision: 27952
URL: https://svn.nixos.org/websvn/nix/?rev=27952&sc=1

Log:
* Added gst-plugins-ugly and gst-plugins-bad.

Added:
   
nixpkgs/branches/kde-4.7/pkgs/development/libraries/gstreamer/gst-plugins-bad/
   
nixpkgs/branches/kde-4.7/pkgs/development/libraries/gstreamer/gst-plugins-bad/default.nix
   
nixpkgs/branches/kde-4.7/pkgs/development/libraries/gstreamer/gst-plugins-ugly/
   
nixpkgs/branches/kde-4.7/pkgs/development/libraries/gstreamer/gst-plugins-ugly/default.nix
Modified:
   nixpkgs/branches/kde-4.7/pkgs/development/libraries/gstreamer/default.nix

Modified: 
nixpkgs/branches/kde-4.7/pkgs/development/libraries/gstreamer/default.nix
==============================================================================
--- nixpkgs/branches/kde-4.7/pkgs/development/libraries/gstreamer/default.nix   
Mon Jul 25 20:10:13 2011        (r27951)
+++ nixpkgs/branches/kde-4.7/pkgs/development/libraries/gstreamer/default.nix   
Mon Jul 25 20:10:45 2011        (r27952)
@@ -7,6 +7,10 @@
 
   gstPluginsGood = callPackage ./gst-plugins-good { };
 
+  gstPluginsUgly = callPackage ./gst-plugins-ugly { };
+
+  gstPluginsBad = callPackage ./gst-plugins-bad { };
+
   gstFfmpeg = callPackage ./gst-ffmpeg { };
 
   gnonlin = callPackage ./gnonlin { };

Added: 
nixpkgs/branches/kde-4.7/pkgs/development/libraries/gstreamer/gst-plugins-bad/default.nix
==============================================================================
--- /dev/null   00:00:00 1970   (empty, because file is newly added)
+++ 
nixpkgs/branches/kde-4.7/pkgs/development/libraries/gstreamer/gst-plugins-bad/default.nix
   Mon Jul 25 20:10:45 2011        (r27952)
@@ -0,0 +1,30 @@
+{ fetchurl, stdenv, pkgconfig, glib, gstreamer, gstPluginsBase
+, libdvdnav, libdvdread }:
+
+stdenv.mkDerivation rec {
+  name = "gst-plugins-bad-0.10.22";
+
+  src = fetchurl {
+    urls = [
+      "${meta.homepage}/src/gst-plugins-bad/${name}.tar.bz2"
+      "mirror://gentoo/distfiles/${name}.tar.bz2"
+      ];
+    sha256 = "030728gf0zjg62yng4qy9yapaffbvkziawa28rk0gspz8cpi1xyq";
+  };
+
+  buildInputs =
+    [ pkgconfig glib gstreamer gstPluginsBase libdvdnav libdvdread ];
+
+  enableParallelBuilding = true;
+
+  meta = {
+    homepage = http://gstreamer.freedesktop.org;
+
+    description = "‘Bad’ (potentially low quality) plug-ins for GStreamer";
+
+    maintainers = [stdenv.lib.maintainers.raskin];
+    platforms = stdenv.lib.platforms.linux;
+
+    license = "LGPLv2+";
+  };
+}

Added: 
nixpkgs/branches/kde-4.7/pkgs/development/libraries/gstreamer/gst-plugins-ugly/default.nix
==============================================================================
--- /dev/null   00:00:00 1970   (empty, because file is newly added)
+++ 
nixpkgs/branches/kde-4.7/pkgs/development/libraries/gstreamer/gst-plugins-ugly/default.nix
  Mon Jul 25 20:10:45 2011        (r27952)
@@ -0,0 +1,30 @@
+{ fetchurl, stdenv, pkgconfig, glib, gstreamer, gstPluginsBase
+, libmad, libdvdread, libmpeg2, libcdio, a52dec }:
+
+stdenv.mkDerivation rec {
+  name = "gst-plugins-ugly-0.10.18";
+
+  src = fetchurl {
+    urls = [
+      "${meta.homepage}/src/gst-plugins-ugly/${name}.tar.bz2"
+      "mirror://gentoo/distfiles/${name}.tar.bz2"
+      ];
+    sha256 = "054fdkb2riy5knda39cp6w3xp9lzax52bn12cklglscjrm46ghgr";
+  };
+
+  buildInputs =
+    [ pkgconfig glib gstreamer gstPluginsBase libmad libdvdread a52dec ];
+
+  enableParallelBuilding = true;
+
+  meta = {
+    homepage = http://gstreamer.freedesktop.org;
+
+    description = "‘Ugly’ (potentially patent-encumbered) plug-ins for 
GStreamer";
+
+    maintainers = [stdenv.lib.maintainers.raskin];
+    platforms = stdenv.lib.platforms.linux;
+
+    license = "LGPLv2+";
+  };
+}
_______________________________________________
nix-commits mailing list
[email protected]
http://mail.cs.uu.nl/mailman/listinfo/nix-commits

Reply via email to