gstreamer update (needed by gstPython)
dropping dep gnomevfs (see code commment) svn path=/nixpkgs/trunk/; revision=13344
This commit is contained in:
@@ -1,13 +1,13 @@
|
||||
args: with args;
|
||||
rec {
|
||||
gstreamerFun = lib.sumArgs (selectVersion ./gstreamer "0.10.17") args;
|
||||
gstreamerFun = lib.sumArgs (selectVersion ./gstreamer "0.10.21") args;
|
||||
gstreamer = gstreamerFun null;
|
||||
|
||||
gstPluginsBaseFun = lib.sumArgs (selectVersion ./gst-plugins-base "0.10.17")
|
||||
gstPluginsBaseFun = lib.sumArgs (selectVersion ./gst-plugins-base "0.10.21")
|
||||
args { inherit gstreamer; };
|
||||
gstPluginsBase = gstPluginsBaseFun null;
|
||||
|
||||
gstPluginsGoodFun = lib.sumArgs (selectVersion ./gst-plugins-good "0.10.6")
|
||||
gstPluginsGoodFun = lib.sumArgs (selectVersion ./gst-plugins-good "0.10.11")
|
||||
args { inherit gstPluginsBase; };
|
||||
gstPluginsGood = gstPluginsGoodFun null;
|
||||
|
||||
|
||||
@@ -0,0 +1,24 @@
|
||||
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;
|
||||
};
|
||||
}
|
||||
@@ -0,0 +1,21 @@
|
||||
args: with args;
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "gst-plugins-good-" + version;
|
||||
|
||||
src = fetchurl {
|
||||
url = "${meta.homepage}/src/gst-plugins-good/${name}.tar.bz2";
|
||||
sha256 = "1ccnyzn9n2a6xjxz5srydc8bm63mjz5cxbcwbigxzqw0a033ych5";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [gstPluginsBase aalib cairo flac hal libjpeg
|
||||
zlib speex libpng libdv libcaca dbus.libs libiec61883 libavc1394 ladspaH
|
||||
taglib ];
|
||||
buildInputs = [pkgconfig];
|
||||
|
||||
configureFlags = "--enable-shared --disable-static --enable-ladspa";
|
||||
|
||||
meta = {
|
||||
homepage = http://gstreamer.freedesktop.org;
|
||||
};
|
||||
}
|
||||
20
pkgs/development/libraries/gstreamer/gstreamer/0.10.21.nix
Normal file
20
pkgs/development/libraries/gstreamer/gstreamer/0.10.21.nix
Normal file
@@ -0,0 +1,20 @@
|
||||
args: with args;
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "gstreamer-" + version;
|
||||
|
||||
src = fetchurl {
|
||||
url = "${meta.homepage}/src/gstreamer/${name}.tar.bz2";
|
||||
sha256 = "1ly3b6ja51vwwkdqzi20hg5azdsrz5pnhswgagdwsprb8nh8bhcl";
|
||||
};
|
||||
|
||||
buildInputs = [perl bison flex pkgconfig python which gtkdoc ];
|
||||
propagatedBuildInputs = [glib libxml2];
|
||||
|
||||
configureFlags = "--enable-shared --disable-static --enable-failing-tests
|
||||
--localstatedir=/var --disable-gtk-doc --disable-docbook";
|
||||
|
||||
meta = {
|
||||
homepage = http://gstreamer.freedesktop.org;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user