2018-06-10 18:16:44 -07:00
|
|
|
{ stdenv, lib, fetchurl, fetchpatch, pkgconfig, libtool
|
|
|
|
, gtk ? null
|
|
|
|
, libpulseaudio, gst_all_1, libvorbis, libcap
|
2018-10-02 03:55:57 -07:00
|
|
|
, CoreServices
|
2018-06-10 18:16:44 -07:00
|
|
|
, withAlsa ? stdenv.isLinux, alsaLib }:
|
2009-01-20 01:50:15 -08:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2013-05-29 14:24:20 -07:00
|
|
|
name = "libcanberra-0.30";
|
2009-01-20 01:50:15 -08:00
|
|
|
|
|
|
|
src = fetchurl {
|
2013-05-29 14:24:20 -07:00
|
|
|
url = "http://0pointer.de/lennart/projects/libcanberra/${name}.tar.xz";
|
|
|
|
sha256 = "0wps39h8rx2b00vyvkia5j40fkak3dpipp1kzilqla0cgvk73dn2";
|
2009-01-20 01:50:15 -08:00
|
|
|
};
|
|
|
|
|
2018-05-04 06:30:54 -07:00
|
|
|
nativeBuildInputs = [ pkgconfig libtool ];
|
2015-04-26 08:27:13 -07:00
|
|
|
buildInputs = [
|
2018-06-10 18:16:44 -07:00
|
|
|
libpulseaudio libvorbis gtk
|
|
|
|
] ++ (with gst_all_1; [ gstreamer gst-plugins-base ])
|
2018-10-02 03:55:57 -07:00
|
|
|
++ lib.optional stdenv.isDarwin CoreServices
|
2018-06-10 18:16:44 -07:00
|
|
|
++ lib.optional stdenv.isLinux libcap
|
|
|
|
++ lib.optional withAlsa alsaLib;
|
2009-01-20 01:50:15 -08:00
|
|
|
|
2018-07-25 14:44:21 -07:00
|
|
|
configureFlags = [ "--disable-oss" ];
|
2009-01-22 14:34:06 -08:00
|
|
|
|
2018-06-10 18:16:44 -07:00
|
|
|
patchFlags = "-p0";
|
|
|
|
patches = stdenv.lib.optional stdenv.isDarwin
|
|
|
|
(fetchpatch {
|
|
|
|
url = "https://raw.githubusercontent.com/macports/macports-ports/master/audio/libcanberra/files/patch-configure.diff";
|
|
|
|
sha256 = "1f7h7ifpqvbfhqygn1b7klvwi80zmpv3538vbmq7ql7bkf1q8h31";
|
|
|
|
});
|
|
|
|
|
2015-08-06 03:32:46 -07:00
|
|
|
postInstall = ''
|
|
|
|
for f in $out/lib/*.la; do
|
2015-10-06 04:23:53 -07:00
|
|
|
sed 's|-lltdl|-L${libtool.lib}/lib -lltdl|' -i $f
|
2015-08-06 03:32:46 -07:00
|
|
|
done
|
|
|
|
'';
|
|
|
|
|
2013-05-09 17:44:03 -07:00
|
|
|
passthru = {
|
|
|
|
gtkModule = "/lib/gtk-2.0/";
|
|
|
|
};
|
|
|
|
|
2009-01-20 01:50:15 -08:00
|
|
|
meta = {
|
2013-05-29 14:24:20 -07:00
|
|
|
description = "An implementation of the XDG Sound Theme and Name Specifications";
|
2009-01-20 01:50:15 -08: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-18 21:19:00 -07:00
|
|
|
license = stdenv.lib.licenses.lgpl2Plus;
|
2010-03-03 06:27:17 -08:00
|
|
|
|
2013-08-16 14:44:33 -07:00
|
|
|
maintainers = [ ];
|
2018-06-10 18:16:44 -07:00
|
|
|
platforms = stdenv.lib.platforms.unix;
|
2009-01-20 01:50:15 -08:00
|
|
|
};
|
|
|
|
}
|