2020-10-04 01:20:11 +00:00
|
|
|
{ lib
|
2022-06-05 18:43:33 +00:00
|
|
|
, buildGoModule
|
2020-10-04 01:20:11 +00:00
|
|
|
, fetchFromGitHub
|
|
|
|
}:
|
|
|
|
|
2022-06-05 18:43:33 +00:00
|
|
|
buildGoModule rec {
|
2020-10-04 01:20:11 +00:00
|
|
|
pname = "ircdog";
|
2023-03-03 03:22:06 +00:00
|
|
|
version = "0.4.0";
|
2020-10-04 01:20:11 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "goshuirc";
|
2023-03-03 03:22:06 +00:00
|
|
|
repo = "ircdog";
|
|
|
|
rev = "refs/tags/v${version}";
|
|
|
|
hash = "sha256-uqqgXmEpGEJHnd1mtgpp13jFhKP5fbhE5wtcZNZL8t4=";
|
2020-10-04 01:20:11 +00:00
|
|
|
};
|
2023-03-03 03:22:06 +00:00
|
|
|
|
2022-06-05 18:43:33 +00:00
|
|
|
vendorSha256 = null;
|
2020-10-04 01:20:11 +00:00
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "ircdog is a simple wrapper over the raw IRC protocol that can respond to pings, and interprets formatting codes";
|
2022-03-28 02:01:43 +00:00
|
|
|
homepage = "https://github.com/ergochat/ircdog";
|
|
|
|
changelog = "https://github.com/ergochat/ircdog/releases/tag/v${version}";
|
2020-10-04 01:20:11 +00:00
|
|
|
license = licenses.isc;
|
|
|
|
maintainers = with maintainers; [ hexa ];
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
|