libcanberra: Use the right GTK+ version, use GThread as well, disable OSS support (recommended).

svn path=/nixpkgs/trunk/; revision=13822
This commit is contained in:
Ludovic Courtès 2009-01-22 22:34:06 +00:00
parent 3e20a89b3d
commit 7137c6dea8
2 changed files with 4 additions and 2 deletions

View file

@ -1,4 +1,4 @@
{ stdenv, fetchurl, pkgconfig, libtool, gtk
{ stdenv, fetchurl, pkgconfig, libtool, gtk, gthread
, alsaLib, pulseaudio, gstreamer, libvorbis }:
stdenv.mkDerivation rec {
@ -11,6 +11,8 @@ stdenv.mkDerivation rec {
buildInputs = [ pkgconfig libtool gtk alsaLib pulseaudio gstreamer libvorbis ];
configureFlags = "--disable-oss";
meta = {
description = "libcanberra, an implementation of the XDG Sound Theme and Name Specifications";

View file

@ -3209,7 +3209,7 @@ let
libcanberra = import ../development/libraries/libcanberra {
inherit fetchurl stdenv pkgconfig libtool alsaLib pulseaudio libvorbis;
inherit (gtkLibs) gtk;
inherit (gtkLibs214) gtk gthread;
gstreamer = gst_all.gstreamer;
};