2011-07-17 15:27:12 +02:00
|
|
|
{ stdenv, fetchurl, pkgconfig, libtool, gtk ? null
|
2013-05-29 23:24:20 +02:00
|
|
|
, alsaLib, pulseaudio, gstreamer, gst_plugins_base, libvorbis }:
|
2009-01-20 10:50:15 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2013-05-29 23:24:20 +02:00
|
|
|
name = "libcanberra-0.30";
|
2009-01-20 10:50:15 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2013-05-29 23:24:20 +02:00
|
|
|
url = "http://0pointer.de/lennart/projects/libcanberra/${name}.tar.xz";
|
|
|
|
sha256 = "0wps39h8rx2b00vyvkia5j40fkak3dpipp1kzilqla0cgvk73dn2";
|
2009-01-20 10:50:15 +01:00
|
|
|
};
|
|
|
|
|
2013-05-29 23:24:20 +02:00
|
|
|
buildInputs = # ToDo: gstreamer not found (why?), add (g)udev?
|
|
|
|
[ pkgconfig libtool alsaLib pulseaudio /*gstreamer gst_plugins_base*/ libvorbis gtk ];
|
2009-01-20 10:50:15 +01:00
|
|
|
|
2013-05-29 23:24:20 +02:00
|
|
|
configureFlags = "--disable-oss";
|
2009-01-22 23:34:06 +01:00
|
|
|
|
2013-05-10 02:44:03 +02:00
|
|
|
passthru = {
|
|
|
|
gtkModule = "/lib/gtk-2.0/";
|
|
|
|
};
|
|
|
|
|
2009-01-20 10:50:15 +01:00
|
|
|
meta = {
|
2013-05-29 23:24:20 +02:00
|
|
|
description = "An implementation of the XDG Sound Theme and Name Specifications";
|
2009-01-20 10:50:15 +01:00
|
|
|
|
|
|
|
longDescription = ''
|
|
|
|
libcanberra is an implementation of the XDG Sound Theme and Name
|
|
|
|
Specifications, for generating event sounds on free desktops
|
|
|
|
such as GNOME. It comes with several backends (ALSA,
|
|
|
|
PulseAudio, OSS, GStreamer, null) and is designed to be
|
|
|
|
portable.
|
|
|
|
'';
|
|
|
|
|
|
|
|
homepage = http://0pointer.de/lennart/projects/libcanberra/;
|
|
|
|
|
|
|
|
license = "LGPLv2+";
|
2010-03-03 15:27:17 +01:00
|
|
|
|
2013-08-16 23:44:33 +02:00
|
|
|
maintainers = [ ];
|
2010-03-03 15:27:17 +01:00
|
|
|
platforms = stdenv.lib.platforms.gnu; # arbitrary choice
|
2009-01-20 10:50:15 +01:00
|
|
|
};
|
|
|
|
}
|