From 57f9bfbd48a759676ba310f069124d63e7082e6c Mon Sep 17 00:00:00 2001 From: Jamey Sharp Date: Wed, 2 Aug 2017 20:53:46 -0700 Subject: [PATCH] zoom-us: only support known platforms This package does not work on arbitrary Linux systems, only on platforms for which upstream has provided prebuilt binaries. Fortunately, we have a list of the platforms we know how to get binaries for: it's exactly the ones in the `srcs` set. --- .../networking/instant-messengers/zoom-us/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/networking/instant-messengers/zoom-us/default.nix b/pkgs/applications/networking/instant-messengers/zoom-us/default.nix index 1d3a5801760d..aa34866b2af4 100644 --- a/pkgs/applications/networking/instant-messengers/zoom-us/default.nix +++ b/pkgs/applications/networking/instant-messengers/zoom-us/default.nix @@ -95,7 +95,7 @@ in stdenv.mkDerivation { homepage = https://zoom.us/; description = "zoom.us video conferencing application"; license = stdenv.lib.licenses.unfree; - platforms = stdenv.lib.platforms.linux; + platforms = builtins.attrNames srcs; maintainers = with stdenv.lib.maintainers; [ danbst ]; };