nixpkgs/pkgs/development/libraries/gstreamer/gst-plugins-base/0.10.21.nix
Marc Weber 7aa7f85bb5 gstreamer update (needed by gstPython)
dropping dep gnomevfs (see code commment)

svn path=/nixpkgs/trunk/; revision=13344
2008-11-19 21:46:01 +00:00

25 lines
637 B
Nix

args: with args;
stdenv.mkDerivation rec {
name = "gst-plugins-base-" + version;
src = fetchurl {
url = "${meta.homepage}/src/gst-plugins-base/${name}.tar.bz2";
sha256 = "14vyshhxpdpfd06jyw1fgcfxb6nh0bg7n2aqd9h9kapkl12llgv7";
};
patchPhase = "sed -i 's@/bin/echo@echo@g' configure";
configureFlags = "--enable-shared --disable-static";
# 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;
};
}