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:
parent
2062c9355a
commit
57f9bfbd48
|
@ -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 ];
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue