Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: e41e1822a017
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 0fb7ae83ade8
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Jan 3, 2020

  1. ngrok-2: isArm -> isAarch32

    lovesegfault authored and FRidh committed Jan 3, 2020
    Copy the full SHA
    0fb7ae8 View commit details
Showing with 1 addition and 1 deletion.
  1. +1 −1 pkgs/tools/networking/ngrok-2/default.nix
2 changes: 1 addition & 1 deletion pkgs/tools/networking/ngrok-2/default.nix
Original file line number Diff line number Diff line change
@@ -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"