nixpkgs/pkgs/development/libraries/gstreamer/gst-plugins-base/default.nix
Ludovic Courtès 4aa703c8b2 GStreamer: gst-plugins-base 0.10.22.
svn path=/nixpkgs/branches/stdenv-updates/; revision=14969
2009-04-09 13:05:10 +00:00

32 lines
869 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.22";
src = fetchurl {
url = "${meta.homepage}/src/gst-plugins-base/${name}.tar.bz2";
sha256 = "1yfmkji12gn8cl2nmgs8bbdadnc5hrywn0zwfsi3izpb0gnmlk0q";
};
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;
description = "Base plug-ins for GStreamer";
license = "LGPLv2+";
};
}