about summary refs log tree commit diff
path: root/nixpkgs/pkgs/servers/irc/irccat/default.nix
blob: fdcb39af0b82612081a86cad2ebdee5c8288a315 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ lib, buildGoModule, fetchFromGitHub }:

buildGoModule rec {
  pname = "irccat";
  version = "0.4.8";

  src = fetchFromGitHub {
    owner = "irccloud";
    repo = "irccat";
    rev = "v${version}";
    sha256 = "sha256-fr5x1usviJPbc4t5SpIVgV9Q6071XG8eYtyeyraddts=";
  };

  vendorSha256 = "030hnkwh45yqppm96yy15j82skf7wmax5xkm7j5khr1l9lrz4591";

  meta = with lib; {
    homepage = "https://github.com/irccloud/irccat";
    description = "Send events to IRC channels from scripts and other applications";
    maintainers = with maintainers; [ qyliss ];
    license = licenses.gpl3Only;
  };
}