2021-01-19 06:50:56 +00:00
|
|
|
{ stdenv, lib, fetchurl, fetchpatch, pkg-config, libtool
|
2021-07-29 20:51:25 +00:00
|
|
|
, gtk2-x11, gtk3-x11 , gtkSupport ? null
|
2024-06-27 00:20:05 +00:00
|
|
|
, libpulseaudio, gst_all_1, libvorbis, libcap, systemd
|
2022-08-02 16:39:38 +00:00
|
|
|
, Carbon, CoreServices, AppKit
|
2021-06-10 02:57:09 +00:00
|
|
|
, withAlsa ? stdenv.isLinux, alsa-lib }:
|
2009-01-20 09:50:15 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2021-07-29 20:51:25 +00:00
|
|
|
pname = "libcanberra";
|
|
|
|
version = "0.30";
|
2009-01-20 09:50:15 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2021-07-29 20:51:25 +00:00
|
|
|
url = "http://0pointer.de/lennart/projects/libcanberra/${pname}-${version}.tar.xz";
|
2013-05-29 21:24:20 +00:00
|
|
|
sha256 = "0wps39h8rx2b00vyvkia5j40fkak3dpipp1kzilqla0cgvk73dn2";
|
2009-01-20 09:50:15 +00:00
|
|
|
};
|
|
|
|
|
2023-04-16 10:13:03 +00:00
|
|
|
outputs = [ "out" "dev" ];
|
|
|
|
|
2021-10-04 18:39:27 +00:00
|
|
|
strictDeps = true;
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
2015-04-26 15:27:13 +00:00
|
|
|
buildInputs = [
|
2021-07-29 20:51:25 +00:00
|
|
|
libpulseaudio libvorbis
|
2021-10-04 18:39:27 +00:00
|
|
|
libtool # in buildInputs rather than nativeBuildInputs since libltdl is used (not libtool itself)
|
2018-06-11 01:16:44 +00:00
|
|
|
] ++ (with gst_all_1; [ gstreamer gst-plugins-base ])
|
2021-07-29 20:51:25 +00:00
|
|
|
++ lib.optional (gtkSupport == "gtk2") gtk2-x11
|
|
|
|
++ lib.optional (gtkSupport == "gtk3") gtk3-x11
|
2022-08-02 16:39:38 +00:00
|
|
|
++ lib.optionals stdenv.isDarwin [ Carbon CoreServices AppKit ]
|
2024-06-27 00:20:05 +00:00
|
|
|
++ lib.optionals stdenv.isLinux [ libcap systemd ]
|
2021-06-10 02:57:09 +00:00
|
|
|
++ lib.optional withAlsa alsa-lib;
|
2009-01-20 09:50:15 +00:00
|
|
|
|
2024-06-27 00:20:05 +00:00
|
|
|
configureFlags = [ "--disable-oss" ]
|
|
|
|
++ lib.optional stdenv.isLinux "--with-systemdsystemunitdir=${placeholder "out"}/lib/systemd/system";
|
2009-01-22 22:34:06 +00:00
|
|
|
|
2019-05-28 23:25:33 +00:00
|
|
|
patches = [
|
2018-06-11 01:16:44 +00:00
|
|
|
(fetchpatch {
|
2019-05-28 23:25:33 +00:00
|
|
|
name = "0001-gtk-Don-t-assume-all-GdkDisplays-are-GdkX11Displays-.patch";
|
2020-04-01 01:11:51 +00:00
|
|
|
url = "http://git.0pointer.net/libcanberra.git/patch/?id=c0620e432650e81062c1967cc669829dbd29b310";
|
2019-05-28 23:25:33 +00:00
|
|
|
sha256 = "0rc7zwn39yxzxp37qh329g7375r5ywcqcaak8ryd0dgvg8m5hcx9";
|
|
|
|
})
|
2022-08-02 16:39:38 +00:00
|
|
|
] ++ lib.optionals stdenv.isDarwin [
|
|
|
|
(fetchpatch {
|
|
|
|
url = "https://github.com/macports/macports-ports/raw/5a7965dfea7727d1ceedee46c7b0ccee9cb23468/audio/libcanberra/files/patch-configure.diff";
|
|
|
|
sha256 = "sha256-pEJy1krciUEg5BFIS8FJ4BubjfS/nt9aqi6BLnS1+4M=";
|
|
|
|
extraPrefix = "";
|
|
|
|
})
|
|
|
|
(fetchpatch {
|
|
|
|
url = "https://github.com/macports/macports-ports/raw/5a7965dfea7727d1ceedee46c7b0ccee9cb23468/audio/libcanberra/files/dynamic_lookup-11.patch";
|
|
|
|
sha256 = "sha256-nUjha2pKh5VZl0ZZzcr9NTo1TVuMqF4OcLiztxW+ofQ=";
|
|
|
|
extraPrefix = "";
|
|
|
|
})
|
2019-05-28 23:25:33 +00:00
|
|
|
];
|
|
|
|
|
2015-08-06 10:32:46 +00:00
|
|
|
postInstall = ''
|
|
|
|
for f in $out/lib/*.la; do
|
2015-10-06 11:23:53 +00:00
|
|
|
sed 's|-lltdl|-L${libtool.lib}/lib -lltdl|' -i $f
|
2015-08-06 10:32:46 +00:00
|
|
|
done
|
|
|
|
'';
|
|
|
|
|
2021-07-29 20:51:25 +00:00
|
|
|
passthru = lib.optionalAttrs (gtkSupport != null) {
|
|
|
|
gtkModule = if gtkSupport == "gtk2" then "/lib/gtk-2.0" else "/lib/gtk-3.0/";
|
2013-05-10 00:44:03 +00:00
|
|
|
};
|
|
|
|
|
2021-02-11 00:30:16 +00:00
|
|
|
meta = with lib; {
|
2013-05-29 21:24:20 +00:00
|
|
|
description = "Implementation of the XDG Sound Theme and Name Specifications";
|
2024-03-19 02:14:51 +00:00
|
|
|
mainProgram = "canberra-gtk-play";
|
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.
|
|
|
|
'';
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "http://0pointer.de/lennart/projects/libcanberra/";
|
2021-02-11 00:30:16 +00:00
|
|
|
license = licenses.lgpl2Plus;
|
2024-05-18 04:53:36 +00:00
|
|
|
maintainers = with maintainers; [ RossComputerGuy ];
|
2021-02-11 00:30:16 +00:00
|
|
|
platforms = platforms.unix;
|
2009-01-20 09:50:15 +00:00
|
|
|
};
|
|
|
|
}
|