mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
* 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
3 changed files with 64 additions and 0 deletions
|
@ -7,6 +7,10 @@ rec {
|
|||
|
||||
gstPluginsGood = callPackage ./gst-plugins-good { };
|
||||
|
||||
gstPluginsUgly = callPackage ./gst-plugins-ugly { };
|
||||
|
||||
gstPluginsBad = callPackage ./gst-plugins-bad { };
|
||||
|
||||
gstFfmpeg = callPackage ./gst-ffmpeg { };
|
||||
|
||||
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…
Reference in a new issue