mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 15:27:20 +03:00
openal: fix build on darwin
* disable alsaLib
This commit is contained in:
parent
8df4be3ee3
commit
ab067cf633
@ -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";
|
||||
|
Loading…
Reference in New Issue
Block a user