retroarch/cores.nix: use correct platform for darwin
This should fix the regression found in https://hydra.nixos.org/eval/1577308#tabs-now-fail. The libretro scripts use “osx” as the identifier for macOS, and “unix” seems to mean linux. If anyone could help out by confirming this works. I don’t currently have access to a macOS machine.
This commit is contained in:
parent
38aa1cad7f
commit
eb84499355
@ -22,7 +22,7 @@ let
|
|||||||
makeFlags = [
|
makeFlags = [
|
||||||
"platform=${{
|
"platform=${{
|
||||||
linux = "unix";
|
linux = "unix";
|
||||||
darwin = "unix";
|
darwin = "osx";
|
||||||
windows = "win";
|
windows = "win";
|
||||||
}.${stdenv.hostPlatform.parsed.kernel.name} or stdenv.hostPlatform.parsed.kernel.name}"
|
}.${stdenv.hostPlatform.parsed.kernel.name} or stdenv.hostPlatform.parsed.kernel.name}"
|
||||||
"ARCH=${{
|
"ARCH=${{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user