3
0
Fork 0
forked from mirrors/nixpkgs

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.
This commit is contained in:
Jamey Sharp 2017-08-02 20:53:46 -07:00 committed by Robin Gloster
parent 2062c9355a
commit 57f9bfbd48

View file

@ -95,7 +95,7 @@ in stdenv.mkDerivation {
homepage = https://zoom.us/; homepage = https://zoom.us/;
description = "zoom.us video conferencing application"; description = "zoom.us video conferencing application";
license = stdenv.lib.licenses.unfree; license = stdenv.lib.licenses.unfree;
platforms = stdenv.lib.platforms.linux; platforms = builtins.attrNames srcs;
maintainers = with stdenv.lib.maintainers; [ danbst ]; maintainers = with stdenv.lib.maintainers; [ danbst ];
}; };