2011-07-17 15:27:12 +02:00
|
|
|
{ stdenv, fetchurl, pkgconfig, libtool, gtk ? null
|
|
|
|
, alsaLib, pulseaudio, gstreamer ? null, libvorbis, libcap }:
|
2009-01-20 10:50:15 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2011-07-17 15:27:12 +02:00
|
|
|
name = "libcanberra-0.28";
|
2009-01-20 10:50:15 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://0pointer.de/lennart/projects/libcanberra/${name}.tar.gz";
|
2011-07-17 15:27:12 +02:00
|
|
|
sha256 = "1346d2y24wiyanyr5bvdnjjgq7iysy8nlq2dwjv0fzxdmcn8n7zb";
|
2009-01-20 10:50:15 +01:00
|
|
|
};
|
|
|
|
|
2010-03-03 15:27:17 +01:00
|
|
|
buildInputs =
|
2011-07-17 15:27:12 +02:00
|
|
|
[ pkgconfig libtool alsaLib pulseaudio gstreamer libvorbis libcap gtk ];
|
2009-01-20 10:50:15 +01:00
|
|
|
|
2011-07-17 15:27:12 +02:00
|
|
|
configureFlags = "--disable-oss --disable-schemas-install";
|
2009-01-22 23:34:06 +01:00
|
|
|
|
2009-01-20 10:50:15 +01:00
|
|
|
meta = {
|
|
|
|
description = "libcanberra, an implementation of the XDG Sound Theme and Name Specifications";
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
maintainers = [ stdenv.lib.maintainers.ludo ];
|
|
|
|
platforms = stdenv.lib.platforms.gnu; # arbitrary choice
|
2009-01-20 10:50:15 +01:00
|
|
|
};
|
|
|
|
}
|