tadfisher/android-nixpkgs

ndk-26-1-10909125 fails on macOS

Closed this issue · 0 comments

The issue in my nix flake:

image

Solution

The nix package for ndk tries loading .zip file for macOS builds but the release doesn't have a .zip for macs. Instead, it has .dmg.

wget https://dl.google.com/android/repository/android-ndk-r26b-darwin.zip # Doesn't work
wget https://dl.google.com/android/repository/android-ndk-r26b-darwin.dmg # Works and should be used

@tadfisher can you take a look or point me at how to solve this?