mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-30 19:02:57 +00:00
27 lines
703 B
Nix
27 lines
703 B
Nix
{ buildGoModule, fetchFromGitHub, lib, nixosTests }:
|
|
|
|
buildGoModule rec {
|
|
pname = "ergo";
|
|
version = "2.11.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ergochat";
|
|
repo = "ergo";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-sZ2HSfYa7Xiu7dw8dUgqaf/tCh66bLlrXC+46J5i3iQ=";
|
|
};
|
|
|
|
vendorSha256 = null;
|
|
|
|
passthru.tests.ergochat = nixosTests.ergochat;
|
|
|
|
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;
|
|
};
|
|
}
|