nixpkgs/pkgs/development/libraries/gstreamer/legacy/gst-plugins-bad/default.nix
2014-01-10 20:51:24 +08:00

30 lines
785 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, gst_plugins_base
, libdvdnav, libdvdread, orc }:
stdenv.mkDerivation rec {
name = "gst-plugins-bad-0.10.23";
src = fetchurl {
urls = [
"${meta.homepage}/src/gst-plugins-bad/${name}.tar.bz2"
"mirror://gentoo/distfiles/${name}.tar.bz2"
];
sha256 = "148lw51dm6pgw8vc6v0fpvm7p233wr11nspdzmvq7bjp2cd7vbhf";
};
buildInputs =
[ pkgconfig glib gstreamer gst_plugins_base libdvdnav libdvdread orc ];
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+";
};
}