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

43 lines
1.2 KiB
Nix
Raw Normal View History

{ stdenv, lib, fetchFromGitHub, autoreconfHook, pkg-config, libpulseaudio, alsaLib, libcap
, CoreAudio, CoreServices, AudioUnit
, usePulseAudio }:
2014-08-29 12:56:49 +00:00
stdenv.mkDerivation rec {
2017-11-27 02:57:26 +00:00
version = "1.2.2";
pname = "libao";
2017-11-27 02:57:26 +00:00
# the github mirror is more up to date than downloads.xiph.org
src = fetchFromGitHub {
owner = "xiph";
repo = "libao";
2019-09-08 23:38:31 +00:00
rev = version;
2017-11-27 02:57:26 +00:00
sha256 = "0svgk4sc9kdhcsfyvbvgm5vpbg3sfr6z5rliflrw49v3x2i4vxq5";
};
2017-11-27 02:57:26 +00:00
configureFlags = [
"--disable-broken-oss"
"--enable-alsa-mmap"
];
outputs = [ "out" "dev" "man" "doc" ];
2015-10-06 15:06:02 +00:00
2017-11-27 02:57:26 +00:00
buildInputs = [ ] ++
lib.optional usePulseAudio libpulseaudio ++
lib.optionals stdenv.isLinux [ alsaLib libcap ] ++
lib.optionals stdenv.isDarwin [ CoreAudio CoreServices AudioUnit ];
nativeBuildInputs = [ autoreconfHook pkg-config ];
2017-11-27 02:57:26 +00:00
meta = with lib; {
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 = "https://xiph.org/ao/";
2017-11-27 02:57:26 +00:00
license = licenses.gpl2;
maintainers = with maintainers; [ ];
2017-11-27 02:57:26 +00:00
platforms = with platforms; unix;
};
}