ircdog: init at 0.2.1

This commit is contained in:
Martin Weinelt 2020-10-04 03:20:11 +02:00
parent 98d2d8cfbe
commit 8eced948be
No known key found for this signature in database
GPG key ID: BD4AA0528F63F17E
2 changed files with 30 additions and 0 deletions

View file

@ -0,0 +1,28 @@
{ lib
, buildGoPackage
, fetchFromGitHub
}:
buildGoPackage rec {
pname = "ircdog";
version = "0.2.1";
goPackagePath = "github.com/goshuirc/ircdog";
src = fetchFromGitHub {
owner = "goshuirc";
repo = pname;
rev = "v${version}";
sha256 = "1ppbznlkv7vajfbimxbyiq5y6pkfhm6ylhl408rwq1bawl28hpkl";
fetchSubmodules = true;
};
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/goshuirc/ircdog";
license = licenses.isc;
maintainers = with maintainers; [ hexa ];
};
}

View file

@ -16536,6 +16536,8 @@ in
imgproxy = callPackage ../servers/imgproxy { };
ircdog = callPackage ../applications/networking/irc/ircdog { };
ircdHybrid = callPackage ../servers/irc/ircd-hybrid { };
jboss = callPackage ../servers/http/jboss { };