nixpkgs/pkgs/development/libraries/gstreamer/gst-ffmpeg/default.nix
Lluís Batlle i Rossell 4b9c06ee6e Updating gstreamer, and setting some patch tricks so it builds with gnumake 3.82
svn path=/nixpkgs/branches/stdenv-updates/; revision=23579
2010-09-01 08:36:24 +00:00

28 lines
648 B
Nix

{ fetchurl, stdenv, pkgconfig, gstPluginsBase, bzip2 }:
stdenv.mkDerivation rec {
name = "gst-ffmpeg-0.10.11";
src = fetchurl {
urls = [
"http://gstreamer.freedesktop.org/src/gst-ffmpeg/${name}.tar.bz2"
"mirror://gentoo/distfiles/${name}.tar.bz2"
];
sha256 = "0bk9k9sccx9nvhjakacvq8gd6vp63x9ddmjrqkfdhkmgwlwa2dpz";
};
propagatedBuildInputs = [ gstPluginsBase ];
buildInputs = [ pkgconfig bzip2 ];
configureFlags = "--enable-ladspa";
meta = {
homepage = "http://gstreamer.freedesktop.org/releases/gst-ffmpeg";
description = "GStreamer's plug-in using FFmpeg";
license = "GPLv2+";
};
}