nixpkgs/pkgs/development/libraries/gstreamer/gst-plugins-ugly/default.nix
Eelco Dolstra fabc00a176 * Added gst-plugins-ugly and gst-plugins-bad.
svn path=/nixpkgs/branches/kde-4.7/; revision=27952
2011-07-25 20:10:45 +00:00

31 lines
809 B
Nix
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{ 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+";
};
}