pkgs.ergo: use upstream

This commit is contained in:
lassulus 2022-11-18 14:29:42 +01:00
parent 8df09756e3
commit 548fb5b41c

View File

@ -1,23 +0,0 @@
{ buildGo117Module , fetchFromGitHub, lib }:
buildGo117Module rec {
pname = "ergo";
version = "2.9.1";
src = fetchFromGitHub {
owner = "ergochat";
repo = "ergo";
rev = "v${version}";
sha256 = "sha256-RxsmkTfHymferS/FRW0sLnstKfvGXkW6cEb/JbeS4lc=";
};
vendorSha256 = null;
meta = {
description = "A modern IRC server (daemon/ircd) written in Go";
homepage = "https://github.com/ergochat/ergo";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ lassulus tv ];
platforms = lib.platforms.linux;
};
}