mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 07:01:54 +00:00
7cc0eee61d
svn path=/nixpkgs/trunk/; revision=26943
24 lines
648 B
Nix
24 lines
648 B
Nix
{ stdenv, fetchurl, pkgconfig, pulseaudio, alsaLib
|
|
, usePulseAudio }:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "libao-1.1.0";
|
|
src = fetchurl {
|
|
url = http://downloads.xiph.org/releases/ao/libao-1.1.0.tar.gz;
|
|
sha256 = "1m0v2y6bhr4iwsgdkc7b3y0qgpvpv1ifbxsy8n8ahsvjn6wmppi9";
|
|
};
|
|
|
|
buildInputs = [ pkgconfig alsaLib ] ++ (if usePulseAudio then [ pulseaudio ]
|
|
else [ alsaLib ]);
|
|
|
|
meta = {
|
|
longDescription = ''
|
|
Libao is Xiph.org's cross-platform audio library that allows
|
|
programs to output audio using a simple API on a wide variety of
|
|
platforms.
|
|
'';
|
|
homepage = http://xiph.org/ao/;
|
|
license = "GPLv2+";
|
|
};
|
|
}
|