nixpkgs/pkgs/development/libraries/gstreamer/gst-ffmpeg/default.nix
Eelco Dolstra ac9579626f * Updated gst-plugins-good and gst-ffmpeg.
svn path=/nixpkgs/branches/kde-4.7/; revision=27951
2011-07-25 20:10:13 +00:00

30 lines
947 B
Nix

{ fetchurl, stdenv, pkgconfig, gstPluginsBase, bzip2, yasm
, useInternalFfmpeg ? false, ffmpeg ? null }:
stdenv.mkDerivation rec {
name = "gst-ffmpeg-0.10.12";
src = fetchurl {
urls = [
"http://gstreamer.freedesktop.org/src/gst-ffmpeg/${name}.tar.bz2"
"mirror://gentoo/distfiles/${name}.tar.bz2"
];
sha256 = "0fyppl8q18g71jd2r0mbiqk8hhrdxq43dglma06mxyjb5c80fxxi";
};
# Upstream strongly recommends against using --with-system-ffmpeg,
# but we do it anyway because we're so hardcore (and we don't want
# multiple copies of ffmpeg).
configureFlags = stdenv.lib.optionalString (!useInternalFfmpeg) "--with-system-ffmpeg";
buildInputs =
[ pkgconfig bzip2 gstPluginsBase ]
++ (if useInternalFfmpeg then [ yasm ] else [ ffmpeg ]);
meta = {
homepage = "http://gstreamer.freedesktop.org/releases/gst-ffmpeg";
description = "GStreamer's plug-in using FFmpeg";
license = "GPLv2+";
};
}