nixpkgs/pkgs/servers/irc/irccat/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
618 B
Nix
Raw Normal View History

2022-03-27 01:36:20 +01:00
{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "irccat";
version = "0.4.8";
src = fetchFromGitHub {
owner = "irccloud";
repo = "irccat";
rev = "v${version}";
2023-09-21 16:23:40 +02:00
hash = "sha256-fr5x1usviJPbc4t5SpIVgV9Q6071XG8eYtyeyraddts=";
2022-03-27 01:36:20 +01:00
};
2023-09-21 16:23:40 +02:00
vendorHash = "sha256-IRXyM000ZDiLPHX20lXlx00tkCzBe5PqvdgXAvm0EAw=";
2022-03-27 01:36:20 +01:00
meta = with lib; {
homepage = "https://github.com/irccloud/irccat";
description = "Send events to IRC channels from scripts and other applications";
mainProgram = "irccat";
2022-03-27 01:36:20 +01:00
maintainers = with maintainers; [ qyliss ];
license = licenses.gpl3Only;
};
}