···9 else if stdenv.isAarch64 then "arm64"
10 else throw "Unsupported architecture";
11 os = if stdenv.isLinux then "linux"
12- else if stdenv.isDarwin then "darwin"
013 else throw "Unsupported os";
14 versionInfo = versions."${os}-${arch}";
15 inherit (versionInfo) version sha256 url;
···9 else if stdenv.isAarch64 then "arm64"
10 else throw "Unsupported architecture";
11 os = if stdenv.isLinux then "linux"
12+ else if (stdenv.isDarwin && stdenv.isx86_64) then "darwin"
13+ else if stdenv.isDarwin then throw "Unsupported architecture"
14 else throw "Unsupported os";
15 versionInfo = versions."${os}-${arch}";
16 inherit (versionInfo) version sha256 url;