3
0
Fork 0
forked from mirrors/nixpkgs

Update farsight2 and enable python bindings

svn path=/nixpkgs/branches/stdenv-updates/; revision=24744
This commit is contained in:
Michael Raskin 2010-11-17 16:27:48 +00:00
parent 0cfdfadc73
commit 2254567b31

View file

@ -1,16 +1,22 @@
{stdenv, fetchurl, libnice, pkgconfig, python, glib, gstreamer, gstPluginsBase}:
{stdenv, fetchurl, libnice, pkgconfig, python, glib, gstreamer, gstPluginsBase,
pygobject, gst_python}:
stdenv.mkDerivation {
name = "farsight2-0.0.16";
stdenv.mkDerivation rec {
name = "farsight2-0.0.22";
src = fetchurl {
url = http://farsight.freedesktop.org/releases/farsight2/farsight2-0.0.16.tar.gz;
url = "http://farsight.freedesktop.org/releases/farsight2/${name}.tar.gz";
sha256 = "07yjndkx1p7ij1ifxsnbqbr8943wmq768x4812khka7dx6ii1sv9";
};
buildInputs = [ libnice pkgconfig python glib gstreamer gstPluginsBase ];
buildInputs = [ libnice pkgconfig python glib gstreamer gstPluginsBase
pygobject gst_python ];
configureFlags = "--disable-python";
preBuild = ''
sed -e '/^[[] -z/d' -i python/Makefile
find . -name Makefile -execdir sed -e '/^[.]NOEXPORT:/d' -i '{}' ';'
find . -name Makefile -execdir sed -r -e 's/^ {8,8}/\t/' -i '{}' ';'
'';
patches = [./makefile.patch];