* Added gst-plugins-ugly and gst-plugins-bad.
svn path=/nixpkgs/branches/kde-4.7/; revision=27952
This commit is contained in:
parent
ac9579626f
commit
fabc00a176
@ -7,6 +7,10 @@ rec {
|
|||||||
|
|
||||||
gstPluginsGood = callPackage ./gst-plugins-good { };
|
gstPluginsGood = callPackage ./gst-plugins-good { };
|
||||||
|
|
||||||
|
gstPluginsUgly = callPackage ./gst-plugins-ugly { };
|
||||||
|
|
||||||
|
gstPluginsBad = callPackage ./gst-plugins-bad { };
|
||||||
|
|
||||||
gstFfmpeg = callPackage ./gst-ffmpeg { };
|
gstFfmpeg = callPackage ./gst-ffmpeg { };
|
||||||
|
|
||||||
gnonlin = callPackage ./gnonlin { };
|
gnonlin = callPackage ./gnonlin { };
|
||||||
|
@ -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+";
|
||||||
|
};
|
||||||
|
}
|
@ -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+";
|
||||||
|
};
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user