1 { lib, stdenv, darwin, fetchurl, openal }:
3 stdenv.mkDerivation rec {
8 url = "http://www.openal.org/openal_webstf/downloads/freealut-${version}.tar.gz";
9 sha256 = "0kzlil6112x2429nw6mycmif8y6bxr2cwjcvp18vh6s7g63ymlb0";
12 buildInputs = [ openal
13 ] ++ lib.optional stdenv.isDarwin
14 darwin.apple_sdk.frameworks.OpenAL
18 homepage = "http://openal.org/";
19 description = "Free implementation of OpenAL's ALUT standard";
20 license = lib.licenses.lgpl2;
21 platforms = lib.platforms.unix;