mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-17 03:03:37 +00:00
29 lines
693 B
Nix
29 lines
693 B
Nix
{ lib
|
|
, buildGoModule
|
|
, fetchFromGitHub
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "ircdog";
|
|
version = "0.3.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "goshuirc";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-x3ihWLgVYu17vG1xQTgIr4TSkeZ467TZBV1fPTPnZgw=";
|
|
fetchSubmodules = true;
|
|
};
|
|
vendorSha256 = null;
|
|
|
|
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}";
|
|
license = licenses.isc;
|
|
maintainers = with maintainers; [ hexa ];
|
|
};
|
|
}
|
|
|
|
|