libcanberra: update, streamline dependencies
Still some ToDos but should be OK, tested building some reverse-dependencies.
This commit is contained in:
parent
4e5fe00a1f
commit
74e0c25ec8
|
@ -1,21 +1,21 @@
|
||||||
{ stdenv, fetchurl, pkgconfig, libtool, gtk ? null
|
{ stdenv, fetchurl, pkgconfig, libtool, gtk ? null
|
||||||
, alsaLib, pulseaudio, gstreamer ? null, libvorbis, libcap }:
|
, alsaLib, pulseaudio, gstreamer, gst_plugins_base, libvorbis }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "libcanberra-0.28";
|
name = "libcanberra-0.30";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "http://0pointer.de/lennart/projects/libcanberra/${name}.tar.gz";
|
url = "http://0pointer.de/lennart/projects/libcanberra/${name}.tar.xz";
|
||||||
sha256 = "1346d2y24wiyanyr5bvdnjjgq7iysy8nlq2dwjv0fzxdmcn8n7zb";
|
sha256 = "0wps39h8rx2b00vyvkia5j40fkak3dpipp1kzilqla0cgvk73dn2";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs =
|
buildInputs = # ToDo: gstreamer not found (why?), add (g)udev?
|
||||||
[ pkgconfig libtool alsaLib pulseaudio gstreamer libvorbis libcap gtk ];
|
[ pkgconfig libtool alsaLib pulseaudio /*gstreamer gst_plugins_base*/ libvorbis gtk ];
|
||||||
|
|
||||||
configureFlags = "--disable-oss --disable-schemas-install";
|
configureFlags = "--disable-oss";
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "libcanberra, an implementation of the XDG Sound Theme and Name Specifications";
|
description = "An implementation of the XDG Sound Theme and Name Specifications";
|
||||||
|
|
||||||
longDescription = ''
|
longDescription = ''
|
||||||
libcanberra is an implementation of the XDG Sound Theme and Name
|
libcanberra is an implementation of the XDG Sound Theme and Name
|
||||||
|
|
Loading…
Reference in New Issue