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

48 lines
1.3 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, pkgconfig, libtool, gtk ? null, libcap
2018-05-04 15:30:54 +02:00
, alsaLib, libpulseaudio, gst_all_1, libvorbis }:
stdenv.mkDerivation rec {
name = "libcanberra-0.30";
src = fetchurl {
url = "http://0pointer.de/lennart/projects/libcanberra/${name}.tar.xz";
sha256 = "0wps39h8rx2b00vyvkia5j40fkak3dpipp1kzilqla0cgvk73dn2";
};
2018-05-04 15:30:54 +02:00
nativeBuildInputs = [ pkgconfig libtool ];
buildInputs = [
2018-05-04 15:30:54 +02:00
alsaLib libpulseaudio libvorbis gtk libcap
] ++ (with gst_all_1; [ gstreamer gst-plugins-base ]);
configureFlags = "--disable-oss";
2015-08-06 12:32:46 +02:00
postInstall = ''
for f in $out/lib/*.la; do
2015-10-06 13:23:53 +02:00
sed 's|-lltdl|-L${libtool.lib}/lib -lltdl|' -i $f
2015-08-06 12:32:46 +02:00
done
'';
passthru = {
gtkModule = "/lib/gtk-2.0/";
};
meta = {
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/;
license = stdenv.lib.licenses.lgpl2Plus;
2013-08-16 23:44:33 +02:00
maintainers = [ ];
platforms = stdenv.lib.platforms.gnu ++ stdenv.lib.platforms.linux; # arbitrary choice
};
}