ircdog: use buildGoModule
This commit is contained in:
parent
260653fe9b
commit
cc2548ae81
1 changed files with 3 additions and 4 deletions
|
@ -1,14 +1,12 @@
|
||||||
{ lib
|
{ lib
|
||||||
, buildGoPackage
|
, buildGoModule
|
||||||
, fetchFromGitHub
|
, fetchFromGitHub
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildGoPackage rec {
|
buildGoModule rec {
|
||||||
pname = "ircdog";
|
pname = "ircdog";
|
||||||
version = "0.3.0";
|
version = "0.3.0";
|
||||||
|
|
||||||
goPackagePath = "github.com/ergochat/ircdog";
|
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "goshuirc";
|
owner = "goshuirc";
|
||||||
repo = pname;
|
repo = pname;
|
||||||
|
@ -16,6 +14,7 @@ buildGoPackage rec {
|
||||||
sha256 = "sha256-x3ihWLgVYu17vG1xQTgIr4TSkeZ467TZBV1fPTPnZgw=";
|
sha256 = "sha256-x3ihWLgVYu17vG1xQTgIr4TSkeZ467TZBV1fPTPnZgw=";
|
||||||
fetchSubmodules = true;
|
fetchSubmodules = true;
|
||||||
};
|
};
|
||||||
|
vendorSha256 = null;
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "ircdog is a simple wrapper over the raw IRC protocol that can respond to pings, and interprets formatting codes";
|
description = "ircdog is a simple wrapper over the raw IRC protocol that can respond to pings, and interprets formatting codes";
|
||||||
|
|
Loading…
Reference in a new issue