Merge pull request #176438 from azahi/ircdog

ircdog: use buildGoModule
This commit is contained in:
Martin Weinelt 2022-06-05 21:55:36 +02:00 committed by GitHub
commit 951d0c08b3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,14 +1,12 @@
{ lib
, buildGoPackage
, buildGoModule
, fetchFromGitHub
}:
buildGoPackage rec {
buildGoModule rec {
pname = "ircdog";
version = "0.3.0";
goPackagePath = "github.com/ergochat/ircdog";
src = fetchFromGitHub {
owner = "goshuirc";
repo = pname;
@ -16,6 +14,7 @@ buildGoPackage rec {
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";