4d9fb0a594
This will make callPackage work with gst. * Rename gstCamelCase to gst_with_underscores. * Add compatibility attributes. svn path=/nixpkgs/trunk/; revision=33078
39 lines
977 B
Nix
39 lines
977 B
Nix
{ fetchurl, stdenv, pkgconfig, gst_plugins_base, aalib, cairo
|
|
, flac, libjpeg, zlib, speex, libpng, libdv, libcaca
|
|
, libiec61883, libavc1394, taglib, pulseaudio
|
|
, glib, gstreamer, bzip2
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "gst-plugins-good-0.10.30";
|
|
|
|
src = fetchurl {
|
|
urls = [
|
|
"${meta.homepage}/src/gst-plugins-good/${name}.tar.bz2"
|
|
"mirror://gentoo/distfiles/${name}.tar.bz2"
|
|
];
|
|
sha256 = "1xlmw211fcn60y2m5gxrryb3knqril4kk2c01b6j713xna8blb5i";
|
|
};
|
|
|
|
configureFlags = "--disable-oss";
|
|
|
|
buildInputs =
|
|
[ pkgconfig glib gstreamer gst_plugins_base libavc1394 libiec61883
|
|
aalib libcaca cairo libdv flac libjpeg libpng pulseaudio speex
|
|
taglib bzip2
|
|
];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = {
|
|
homepage = http://gstreamer.freedesktop.org;
|
|
|
|
description = "`Good' plug-ins for GStreamer";
|
|
|
|
maintainers = [stdenv.lib.maintainers.raskin];
|
|
platforms = stdenv.lib.platforms.linux;
|
|
|
|
license = "LGPLv2+";
|
|
};
|
|
}
|