Files

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

29 lines
682 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
lib,
buildGoModule,
fetchFromGitHub,
}:
buildGoModule rec {
pname = "ircdog";
version = "0.5.5";
src = fetchFromGitHub {
owner = "goshuirc";
repo = "ircdog";
tag = "v${version}";
hash = "sha256-maF53Z0FHAhGmnOnMsX0dDnmckPNBY4Bcm4OBM/x4hQ=";
};
vendorHash = null;
meta = {
description = "Simple wrapper over the raw IRC protocol that can respond to pings, and interprets formatting codes";
mainProgram = "ircdog";
homepage = "https://github.com/ergochat/ircdog";
changelog = "https://github.com/ergochat/ircdog/releases/tag/v${version}";
license = lib.licenses.isc;
maintainers = with lib.maintainers; [ hexa ];
};
}