Unverified Commit 774290e3 authored by éclairevoyant's avatar éclairevoyant
Browse files

webcord: format with nixfmt (RFC 166)

parent 5f423cc7
Loading
Loading
Loading
Loading
+32 −25
Original line number Diff line number Diff line
{ lib
, buildNpmPackage
, fetchFromGitHub
, copyDesktopItems
, python3
, xdg-utils
, electron
, makeDesktopItem
, nix-update-script
{
  lib,
  buildNpmPackage,
  fetchFromGitHub,
  copyDesktopItems,
  python3,
  xdg-utils,
  electron,
  makeDesktopItem,
  nix-update-script,
}:

buildNpmPackage rec {
@@ -68,7 +69,10 @@ buildNpmPackage rec {
      icon = "webcord";
      desktopName = "WebCord";
      comment = meta.description;
      categories = [ "Network" "InstantMessaging" ];
      categories = [
        "Network"
        "InstantMessaging"
      ];
    })
  ];

@@ -81,7 +85,10 @@ buildNpmPackage rec {
    changelog = "https://github.com/SpacingBat3/WebCord/releases/tag/v${version}";
    license = lib.licenses.mit;
    mainProgram = "webcord";
    maintainers = with lib.maintainers; [ eclairevoyant huantian ];
    maintainers = with lib.maintainers; [
      eclairevoyant
      huantian
    ];
    platforms = lib.platforms.linux;
  };
}