From df760d5b58e043507495bf04073ce7e8b1edafbb Mon Sep 17 00:00:00 2001 From: Matt Whiteley Date: Mon, 25 Apr 2022 11:07:37 -0700 Subject: [PATCH] Update darwin versions and comment on difference to linux --- .../networking/instant-messengers/zoom-us/default.nix | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/networking/instant-messengers/zoom-us/default.nix b/pkgs/applications/networking/instant-messengers/zoom-us/default.nix index 02a8dc17f3f3..cc875edf3b83 100644 --- a/pkgs/applications/networking/instant-messengers/zoom-us/default.nix +++ b/pkgs/applications/networking/instant-messengers/zoom-us/default.nix @@ -33,9 +33,12 @@ let inherit (stdenv.hostPlatform) system; throwSystem = throw "Unsupported system: ${system}"; + # Zoom versions are released at different times for each platform and linux + # is stuck on 5.9.6 until https://github.com/NixOS/nixpkgs/pull/166085 is + # merged version = { - aarch64-darwin = "5.10.1.5839"; - x86_64-darwin = "5.10.1.5839"; + aarch64-darwin = "5.10.4.6592"; + x86_64-darwin = "5.10.4.6592"; x86_64-linux = "5.9.6.2225"; }.${system} or throwSystem;