ce46e7ff63
I updated gstreamer too, because this phonon was not finding a header file. As that did not fix much the phonon build, I helped the generic builder with NIX_CFLAGS_COMPILER for phonon to find the proper header files. Either the phonon cmake scripts don't find properly the gstreamer plugins header file, or we install gstreamer in a strange way. svn path=/nixpkgs/trunk/; revision=19974
28 lines
652 B
Nix
28 lines
652 B
Nix
{ fetchurl, stdenv, pkgconfig, gstPluginsBase, bzip2, ... }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "gst-ffmpeg-0.10.9";
|
|
|
|
src = fetchurl {
|
|
urls = [
|
|
"http://gstreamer.freedesktop.org/src/gst-ffmpeg/${name}.tar.bz2"
|
|
"mirror://gentoo/distfiles/${name}.tar.bz2"
|
|
];
|
|
sha256 = "05cg5jzl8wccsr495hgs7cgdkc6dfi1v218fsm5fv2slgly1pvb3";
|
|
};
|
|
|
|
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+";
|
|
};
|
|
}
|