freealut: fix build on Darwin
This commit is contained in:
parent
cad9bdc78d
commit
c57715570a
@ -1,4 +1,4 @@
|
|||||||
{ stdenv, fetchurl, openal }:
|
{ stdenv, darwin, fetchurl, openal }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "freealut-1.1.0";
|
name = "freealut-1.1.0";
|
||||||
@ -8,12 +8,15 @@ stdenv.mkDerivation rec {
|
|||||||
sha256 = "0kzlil6112x2429nw6mycmif8y6bxr2cwjcvp18vh6s7g63ymlb0";
|
sha256 = "0kzlil6112x2429nw6mycmif8y6bxr2cwjcvp18vh6s7g63ymlb0";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ openal ];
|
buildInputs = [ openal
|
||||||
|
] ++ stdenv.lib.optional stdenv.isDarwin
|
||||||
|
darwin.apple_sdk.frameworks.OpenAL
|
||||||
|
;
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
homepage = "http://openal.org/";
|
homepage = "http://openal.org/";
|
||||||
description = "Free implementation of OpenAL's ALUT standard";
|
description = "Free implementation of OpenAL's ALUT standard";
|
||||||
license = stdenv.lib.licenses.lgpl2;
|
license = stdenv.lib.licenses.lgpl2;
|
||||||
platforms = stdenv.lib.platforms.linux;
|
platforms = stdenv.lib.platforms.unix;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user