nixpkgs/pkgs/applications/networking/irc/ircdog/default.nix

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

29 lines
677 B
Nix
Raw Normal View History

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";
version = "0.4.0";
2020-10-04 01:20:11 +00:00
src = fetchFromGitHub {
owner = "goshuirc";
repo = "ircdog";
rev = "refs/tags/v${version}";
hash = "sha256-uqqgXmEpGEJHnd1mtgpp13jFhKP5fbhE5wtcZNZL8t4=";
2020-10-04 01:20:11 +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";
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 ];
};
}