diff options
| author | Seth Flynn <[email protected]> | 2025-03-10 20:45:24 -0400 |
|---|---|---|
| committer | Seth Flynn <[email protected]> | 2025-03-23 19:31:27 -0400 |
| commit | 1f478b5c4f12b74b003d3976019fb62324eb9a55 (patch) | |
| tree | 477ed3ac10e171f9239aacfb185cbfa605dca793 /pkgs/lwjgl | |
| parent | d1b5d789590bec99defe9f95df7df64d2bdba693 (diff) | |
add arm32 and ppc64le targets
Diffstat (limited to 'pkgs/lwjgl')
| -rw-r--r-- | pkgs/lwjgl/default.nix | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/pkgs/lwjgl/default.nix b/pkgs/lwjgl/default.nix index d287a83..4c87ec0 100644 --- a/pkgs/lwjgl/default.nix +++ b/pkgs/lwjgl/default.nix @@ -180,6 +180,8 @@ stdenv.mkDerivation ( "arm32" else if stdenv.hostPlatform.isRiscV64 then "riscv64" + else if stdenv.hostPlatform.isPower64 then + "ppc64le" else throw "${stdenv.hostPlatform.cpu.name} is not a supported architecture"; LWJGL_BUILD_OFFLINE = "yes"; |
