edbbddce1d
svn path=/nixpkgs/trunk/; revision=17661
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.22";
|
|
|
|
src = fetchurl {
|
|
urls = [
|
|
"${meta.homepage}/src/gst-plugins-base/${name}.tar.bz2"
|
|
"mirror://gentoo/distfiles/${name}.tar.bz2"
|
|
];
|
|
sha256 = "1yfmkji12gn8cl2nmgs8bbdadnc5hrywn0zwfsi3izpb0gnmlk0q";
|
|
};
|
|
|
|
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+";
|
|
};
|
|
}
|