mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
ngrok-2: isArm -> isAarch32
This commit is contained in:
parent
e41e1822a0
commit
0fb7ae83ad
1 changed files with 1 additions and 1 deletions
|
@ -5,8 +5,8 @@ with stdenv.lib;
|
|||
let versions = builtins.fromJSON (builtins.readFile ./versions.json);
|
||||
arch = if stdenv.isi686 then "386"
|
||||
else if stdenv.isx86_64 then "amd64"
|
||||
else if stdenv.isAarch32 then "arm"
|
||||
else if stdenv.isAarch64 then "arm64"
|
||||
else if stdenv.isArm then "arm"
|
||||
else throw "Unsupported architecture";
|
||||
os = if stdenv.isLinux then "linux"
|
||||
else if stdenv.isDarwin then "darwin"
|
||||
|
|
Loading…
Reference in a new issue