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
33 lines
885 B
Nix
33 lines
885 B
Nix
{ fetchurl, stdenv, pkgconfig, python, gstreamer
|
|
, libX11, libXv, libXext, alsaLib, cdparanoia , libogg
|
|
, libtheora, libvorbis, freetype, pango
|
|
, liboil, gtk, which, gtkdoc, ... }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "gst-plugins-base-0.10.26";
|
|
|
|
src = fetchurl {
|
|
urls = [
|
|
"${meta.homepage}/src/gst-plugins-base/${name}.tar.bz2"
|
|
"mirror://gentoo/distfiles/${name}.tar.bz2"
|
|
];
|
|
sha256 = "0znxs3ls0hgc7vmllna3bazw217q1h9lmn5vhnclfadbb3flhvg0";
|
|
};
|
|
|
|
patchPhase = "sed -i 's@/bin/echo@echo@g' configure";
|
|
|
|
# TODO : v4l, libvisual
|
|
propagatedBuildInputs = [gstreamer libX11 libXv libXext alsaLib cdparanoia
|
|
libogg libtheora libvorbis freetype pango liboil gtk which gtkdoc];
|
|
|
|
buildInputs = [pkgconfig python];
|
|
|
|
meta = {
|
|
homepage = http://gstreamer.freedesktop.org;
|
|
|
|
description = "Base plug-ins for GStreamer";
|
|
|
|
license = "LGPLv2+";
|
|
};
|
|
}
|