nixpkgs/pkgs/development/libraries/libao/default.nix

33 lines
1 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, pkgconfig, libpulseaudio, alsaLib, libcap
, CoreAudio, CoreServices, AudioUnit
, usePulseAudio }:
2014-08-29 14:56:49 +02:00
stdenv.mkDerivation rec {
version = "1.2.0";
name = "libao-${version}";
src = fetchurl {
2014-08-29 14:56:49 +02:00
url = "http://downloads.xiph.org/releases/ao/${name}.tar.gz";
sha256 = "1bwwv1g9lchaq6qmhvj1pp3hnyqr64ydd4j38x94pmprs4d27b83";
};
outputs = [ "out" "dev" "doc" ];
2015-10-06 17:06:02 +02:00
2014-08-29 14:56:49 +02:00
buildInputs =
2015-09-11 14:49:22 +02:00
[ pkgconfig ] ++
lib.optional stdenv.isLinux (if usePulseAudio then libpulseaudio else alsaLib) ++
lib.optional stdenv.isLinux libcap ++
lib.optionals stdenv.isDarwin [ CoreAudio CoreServices AudioUnit ];
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/;
2014-08-29 14:56:49 +02:00
license = stdenv.lib.licenses.gpl2;
maintainers = with stdenv.lib.maintainers; [ fuuzetsu ];
platforms = with stdenv.lib.platforms; unix;
};
}