mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-04-13 09:17:34 +00:00
libao: Build against PulseAudio.
svn path=/nixpkgs/branches/stdenv-updates/; revision=14828
This commit is contained in:
parent
956e469d5a
commit
98ab3f90ca
@ -1,4 +1,4 @@
|
||||
{stdenv, fetchurl, pkgconfig}:
|
||||
{ stdenv, fetchurl, pkgconfig, pulseaudio }:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "libao-0.8.8";
|
||||
@ -7,7 +7,7 @@ stdenv.mkDerivation {
|
||||
sha256 = "e52e05af6b10f42d2ee9845df1a581bf2b352060eabf7946aee0a600c3878954";
|
||||
};
|
||||
|
||||
buildInputs = [pkgconfig];
|
||||
buildInputs = [ pkgconfig pulseaudio ];
|
||||
|
||||
meta = {
|
||||
longDescription = ''
|
||||
@ -16,6 +16,6 @@ stdenv.mkDerivation {
|
||||
platforms.
|
||||
'';
|
||||
homepage = http://xiph.org/ao/;
|
||||
license = "GPL";
|
||||
license = "GPLv2+";
|
||||
};
|
||||
}
|
||||
|
@ -3208,7 +3208,7 @@ let
|
||||
};
|
||||
|
||||
libao = import ../development/libraries/libao {
|
||||
inherit stdenv fetchurl pkgconfig;
|
||||
inherit stdenv fetchurl pkgconfig pulseaudio;
|
||||
};
|
||||
|
||||
libarchive = selectVersion ../development/libraries/libarchive "2.4.12" {
|
||||
|
Loading…
Reference in New Issue
Block a user