summary refs log tree commit diff
path: root/pkgs/development/libraries/gstreamer/gst-plugins-good/default.nix
blob: b575c2536a14f3603f53d0e2b673790b1dcc9ca8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{ fetchurl, stdenv, pkgconfig, gstPluginsBase, aalib, cairo
, flac , hal, libjpeg, zlib, speex, libpng, libdv, libcaca, dbus
, libiec61883, libavc1394, ladspaH, taglib, gdbm, pulseaudio }:

stdenv.mkDerivation rec {
  name = "gst-plugins-good-0.10.14";

  src = fetchurl {
    url = "${meta.homepage}/src/gst-plugins-good/${name}.tar.bz2";
    sha256 = "12kq60zdqxkshpjr76iwzykzhjaq3g1rm81nz7b0x44rrc0ms80j";
  };

  propagatedBuildInputs = [gstPluginsBase aalib cairo flac hal libjpeg
    zlib speex libpng libdv libcaca dbus.libs libiec61883 libavc1394 ladspaH
    taglib gdbm pulseaudio];
  buildInputs = [pkgconfig];

  configureFlags = "--enable-ladspa";

  meta = {
    homepage = http://gstreamer.freedesktop.org;

    description = "`Good' plug-ins for GStreamer";

    license = "LGPLv2+";
  };
}