2015-04-26 16:27:13 +01:00
|
|
|
{ stdenv, fetchurl, pkgconfig, libtool, gtk ? null, libcap
|
2018-05-04 14:30:54 +01:00
|
|
|
, alsaLib, libpulseaudio, gst_all_1, libvorbis }:
|
2009-01-20 09:50:15 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2013-05-29 22:24:20 +01:00
|
|
|
name = "libcanberra-0.30";
|
2009-01-20 09:50:15 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2013-05-29 22:24:20 +01:00
|
|
|
url = "http://0pointer.de/lennart/projects/libcanberra/${name}.tar.xz";
|
|
|
|
sha256 = "0wps39h8rx2b00vyvkia5j40fkak3dpipp1kzilqla0cgvk73dn2";
|
2009-01-20 09:50:15 +00:00
|
|
|
};
|
|
|
|
|
2018-05-04 14:30:54 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig libtool ];
|
2015-04-26 16:27:13 +01:00
|
|
|
buildInputs = [
|
2018-05-04 14:30:54 +01:00
|
|
|
alsaLib libpulseaudio libvorbis gtk libcap
|
|
|
|
] ++ (with gst_all_1; [ gstreamer gst-plugins-base ]);
|
2009-01-20 09:50:15 +00:00
|
|
|
|
2013-05-29 22:24:20 +01:00
|
|
|
configureFlags = "--disable-oss";
|
2009-01-22 22:34:06 +00:00
|
|
|
|
2015-08-06 11:32:46 +01:00
|
|
|
postInstall = ''
|
|
|
|
for f in $out/lib/*.la; do
|
2015-10-06 12:23:53 +01:00
|
|
|
sed 's|-lltdl|-L${libtool.lib}/lib -lltdl|' -i $f
|
2015-08-06 11:32:46 +01:00
|
|
|
done
|
|
|
|
'';
|
|
|
|
|
2013-05-10 01:44:03 +01:00
|
|
|
passthru = {
|
|
|
|
gtkModule = "/lib/gtk-2.0/";
|
|
|
|
};
|
|
|
|
|
2009-01-20 09:50:15 +00:00
|
|
|
meta = {
|
2013-05-29 22:24:20 +01:00
|
|
|
description = "An implementation of the XDG Sound Theme and Name Specifications";
|
2009-01-20 09:50:15 +00: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/;
|
|
|
|
|
2014-06-19 05:19:00 +01:00
|
|
|
license = stdenv.lib.licenses.lgpl2Plus;
|
2010-03-03 14:27:17 +00:00
|
|
|
|
2013-08-16 22:44:33 +01:00
|
|
|
maintainers = [ ];
|
2018-04-30 23:47:47 +01:00
|
|
|
platforms = stdenv.lib.platforms.gnu ++ stdenv.lib.platforms.linux; # arbitrary choice
|
2009-01-20 09:50:15 +00:00
|
|
|
};
|
|
|
|
}
|