mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 15:56:50 +01:00
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
1 changed files with 1 additions and 1 deletions
|
@ -22,7 +22,7 @@ let
|
|||
makeFlags = [
|
||||
"platform=${{
|
||||
linux = "unix";
|
||||
darwin = "unix";
|
||||
darwin = "osx";
|
||||
windows = "win";
|
||||
}.${stdenv.hostPlatform.parsed.kernel.name} or stdenv.hostPlatform.parsed.kernel.name}"
|
||||
"ARCH=${{
|
||||
|
|
Loading…
Reference in a new issue