Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
29 lines
709 B
Nix
29 lines
709 B
Nix
{
|
|
lib,
|
|
buildGoModule,
|
|
fetchFromGitHub,
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "irccat";
|
|
version = "0.4.12";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "irccloud";
|
|
repo = "irccat";
|
|
rev = "v${version}";
|
|
hash = "sha256-W6Qj+zg6jC304bEIQeFB8unSFgjV60zXV+I8hpw3AFA=";
|
|
};
|
|
|
|
vendorHash = "sha256-SUE868jVJywqE0A5yjMWohrMw58OUnxGGxvcR8UzPfE=";
|
|
|
|
meta = {
|
|
homepage = "https://github.com/irccloud/irccat";
|
|
changelog = "https://github.com/irccloud/irccat/releases/tag/v${version}0.4.11";
|
|
description = "Send events to IRC channels from scripts and other applications";
|
|
mainProgram = "irccat";
|
|
maintainers = with lib.maintainers; [ qyliss ];
|
|
license = lib.licenses.gpl3Only;
|
|
};
|
|
}
|