Merge pull request #99523 from mweinelt/ircdog

ircdog: init at 0.2.1
This commit is contained in:
Martin Weinelt 2020-10-30 22:39:27 +01:00 committed by GitHub
commit 4221de2b4f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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

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