openal: fix build on darwin

* disable alsaLib
This commit is contained in:
Jason \"Don\" O'Conal 2013-07-04 15:04:19 +10:00 committed by Rok Garbas
parent 8df4be3ee3
commit ab067cf633

View file

@ -10,7 +10,7 @@ stdenv.mkDerivation rec {
name = "openal-soft-${version}.tar.bz2";
};
buildInputs = [ cmake alsaLib ];
buildInputs = [ cmake ] ++ stdenv.lib.optional (!stdenv.isDarwin) alsaLib;
meta = {
description = "OpenAL, a cross-platform 3D audio API";