nixpkgs/pkgs/servers/irc/ergochat/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
703 B
Nix
Raw Normal View History

{ buildGoModule, fetchFromGitHub, lib, nixosTests }:
2022-01-12 19:35:25 +00:00
buildGoModule rec {
2022-01-12 19:35:25 +00:00
pname = "ergo";
2022-06-20 10:30:24 +00:00
version = "2.10.0";
2022-01-12 19:35:25 +00:00
src = fetchFromGitHub {
owner = "ergochat";
repo = "ergo";
rev = "v${version}";
2022-06-20 10:30:24 +00:00
sha256 = "sha256-SydseZSEuFhbaU4OMnT8zFLbRfmeKwXsZZeDh8mbZco=";
2022-01-12 19:35:25 +00:00
};
vendorSha256 = null;
2022-01-12 20:47:27 +00:00
passthru.tests.ergochat = nixosTests.ergochat;
2022-01-12 19:35:25 +00:00
meta = {
changelog = "https://github.com/ergochat/ergo/blob/v${version}/CHANGELOG.md";
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;
};
}