mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 05:00:16 +00:00
libcanberra 0.23.
svn path=/nixpkgs/trunk/; revision=20353
This commit is contained in:
parent
8ba2b6a933
commit
344f2efc5f
|
@ -1,15 +1,16 @@
|
|||
{ stdenv, fetchurl, pkgconfig, libtool, gtk, gthread
|
||||
, alsaLib, pulseaudio, gstreamer, libvorbis }:
|
||||
, alsaLib, pulseaudio, gstreamer, libvorbis, libcap }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "libcanberra-0.10";
|
||||
name = "libcanberra-0.23";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://0pointer.de/lennart/projects/libcanberra/${name}.tar.gz";
|
||||
sha256 = "0wl2hd8zqwzbbp4icng6siim85jb6hvczy9c6m92lh85wrcwpqxh";
|
||||
sha256 = "0q09gasvm5dc9d4640lzb5nnmy2cpyi74aq83kjd3j4z58lczl57";
|
||||
};
|
||||
|
||||
buildInputs = [ pkgconfig libtool alsaLib pulseaudio gstreamer libvorbis ];
|
||||
buildInputs =
|
||||
[ pkgconfig libtool alsaLib pulseaudio gstreamer libvorbis libcap ];
|
||||
propagatedBuildInputs = [ gtk ];
|
||||
|
||||
configureFlags = "--disable-oss";
|
||||
|
@ -28,5 +29,8 @@ stdenv.mkDerivation rec {
|
|||
homepage = http://0pointer.de/lennart/projects/libcanberra/;
|
||||
|
||||
license = "LGPLv2+";
|
||||
|
||||
maintainers = [ stdenv.lib.maintainers.ludo ];
|
||||
platforms = stdenv.lib.platforms.gnu; # arbitrary choice
|
||||
};
|
||||
}
|
||||
|
|
|
@ -4098,7 +4098,8 @@ let
|
|||
};
|
||||
|
||||
libcanberra = import ../development/libraries/libcanberra {
|
||||
inherit fetchurl stdenv pkgconfig libtool alsaLib pulseaudio libvorbis;
|
||||
inherit fetchurl stdenv pkgconfig libtool alsaLib pulseaudio
|
||||
libvorbis libcap;
|
||||
inherit (gtkLibs) gtk gthread;
|
||||
gstreamer = gst_all.gstreamer;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue