Commit 69f185ed authored by Yarny0's avatar Yarny0
Browse files

zoom-us: resolve `with lib;` in `meta`

parent e46fc400
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -237,14 +237,14 @@ stdenv.mkDerivation {
  passthru.updateScript = ./update.sh;
  passthru.tests.startwindow = callPackage ./test.nix { };

  meta = with lib; {
  meta = {
    homepage = "https://zoom.us/";
    changelog = "https://support.zoom.com/hc/en/article?id=zm_kb&sysparm_article=KB0061222";
    description = "zoom.us video conferencing application";
    sourceProvenance = with sourceTypes; [ binaryNativeCode ];
    license = licenses.unfree;
    sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ];
    license = lib.licenses.unfree;
    platforms = builtins.attrNames srcs;
    maintainers = with maintainers; [
    maintainers = with lib.maintainers; [
      danbst
      tadfisher
    ];