nixpkgs/pkgs/development/libraries/libcanberra/default.nix

68 lines
2.1 KiB
Nix
Raw Normal View History

{ stdenv, lib, fetchurl, fetchpatch, pkg-config, libtool
2018-06-11 02:16:44 +01:00
, gtk ? null
, libpulseaudio, gst_all_1, libvorbis, libcap
2018-10-02 11:55:57 +01:00
, CoreServices
2018-06-11 02:16:44 +01:00
, withAlsa ? stdenv.isLinux, alsaLib }:
stdenv.mkDerivation rec {
name = "libcanberra-0.30";
src = fetchurl {
url = "http://0pointer.de/lennart/projects/libcanberra/${name}.tar.xz";
sha256 = "0wps39h8rx2b00vyvkia5j40fkak3dpipp1kzilqla0cgvk73dn2";
};
nativeBuildInputs = [ pkg-config libtool ];
buildInputs = [
2018-06-11 02:16:44 +01:00
libpulseaudio libvorbis gtk
] ++ (with gst_all_1; [ gstreamer gst-plugins-base ])
2018-10-02 11:55:57 +01:00
++ lib.optional stdenv.isDarwin CoreServices
2018-06-11 02:16:44 +01:00
++ lib.optional stdenv.isLinux libcap
++ lib.optional withAlsa alsaLib;
2018-07-25 22:44:21 +01:00
configureFlags = [ "--disable-oss" ];
patches = [
2018-06-11 02:16:44 +01:00
(fetchpatch {
name = "0001-gtk-Don-t-assume-all-GdkDisplays-are-GdkX11Displays-.patch";
url = "http://git.0pointer.net/libcanberra.git/patch/?id=c0620e432650e81062c1967cc669829dbd29b310";
sha256 = "0rc7zwn39yxzxp37qh329g7375r5ywcqcaak8ryd0dgvg8m5hcx9";
})
];
postPatch = (lib.optional stdenv.isDarwin) ''
patch -p0 < ${fetchpatch {
2018-06-11 02:16:44 +01:00
url = "https://raw.githubusercontent.com/macports/macports-ports/master/audio/libcanberra/files/patch-configure.diff";
sha256 = "1f7h7ifpqvbfhqygn1b7klvwi80zmpv3538vbmq7ql7bkf1q8h31";
}}
'';
2018-06-11 02:16:44 +01: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
'';
passthru = {
gtkModule = "/lib/gtk-2.0/";
};
2021-02-11 00:30:16 +00:00
meta = with lib; {
description = "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/";
2021-02-11 00:30:16 +00:00
license = licenses.lgpl2Plus;
2013-08-16 22:44:33 +01:00
maintainers = [ ];
2021-02-11 00:30:16 +00:00
platforms = platforms.unix;
# canberra-gtk-module.c:28:10: fatal error: 'gdk/gdkx.h' file not found
# #include <gdk/gdkx.h>
broken = stdenv.isDarwin;
};
}