29 lines
703 B
Nix
29 lines
703 B
Nix
{ lib
|
|
, buildGoModule
|
|
, fetchFromGitHub
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "ircdog";
|
|
version = "0.5.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "goshuirc";
|
|
repo = "ircdog";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-TdMgt1ZgoEaweH8Cbb+wG/H1Bx9DpgHgzGO5dZfxvK8=";
|
|
};
|
|
|
|
vendorHash = null;
|
|
|
|
meta = with lib; {
|
|
description = "ircdog is a 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 = licenses.isc;
|
|
maintainers = with maintainers; [ hexa ];
|
|
};
|
|
}
|
|
|
|
|