Unverified Commit 1ac6bd9e authored by Gaétan Lepage's avatar Gaétan Lepage Committed by GitHub
Browse files

slacky: init at 0.0.5 (#375653)

parents 2ca9c4fd 8780a022
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -2451,6 +2451,12 @@
    githubId = 206242;
    name = "Andreas Wiese";
  };
  awwpotato = {
    email = "awwpotato@voidq.com";
    github = "awwpotato";
    githubId = 153149335;
    name = "awwpotato";
  };
  axertheaxe = {
    email = "axertheaxe@proton.me";
    github = "AxerTheAxe";
+67 −0
Original line number Diff line number Diff line
{
  lib,
  buildNpmPackage,
  fetchFromGitHub,
  electron,
  copyDesktopItems,
  makeDesktopItem,
  nix-update-script,
}:
buildNpmPackage rec {
  pname = "slacky";
  version = "0.0.5";

  src = fetchFromGitHub {
    owner = "andirsun";
    repo = "Slacky";
    tag = "v${version}";
    hash = "sha256-nDxmzZqi7xEe4hnY6iXJg+613lSKElWxvF3w8bRDW90=";
  };

  npmDepsHash = "sha256-9+4cxeQw2Elug+xIgzNvpaSMgDVlBFz/+TW1jJwDm40=";

  npmPackFlags = [ "--ignore-scripts" ];

  nativeBuildInputs = [
    electron
    copyDesktopItems
  ];

  env.ELECTRON_SKIP_BINARY_DOWNLOAD = "1";

  postInstall = ''
    mkdir -p $out/share/icons
    ln -s $out/lib/node_modules/slacky/build/icons/icon.png $out/share/icons/slacky.png
    makeWrapper ${electron}/bin/electron $out/bin/slacky \
      --add-flags $out/lib/node_modules/slacky/
  '';

  desktopItems = lib.singleton (makeDesktopItem {
    name = "slacky";
    exec = "slacky %u";
    icon = "slacky";
    desktopName = "Slacky";
    comment = "An unofficial Slack desktop client for arm64 Linux";
    startupWMClass = "com.andersonlaverde.slacky";
    type = "Application";
    categories = [
      "Network"
      "InstantMessaging"
    ];
    mimeTypes = [
      "x-scheme-handler/slack"
    ];
  });

  passthru.updateScript = nix-update-script { };

  meta = {
    description = "Unofficial Slack desktop client for arm64 Linux";
    homepage = "https://github.com/andirsun/Slacky";
    changelog = "https://github.com/andirsun/Slacky/releases/tag/v${version}";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ awwpotato ];
    platforms = [ "aarch64-linux" ];
    mainProgram = "slacky";
  };
}