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
701 B
Nix
Raw Normal View History

{ buildGoModule, fetchFromGitHub, lib, nixosTests }:
2022-01-12 20:35:25 +01:00
buildGoModule rec {
2022-01-12 20:35:25 +01:00
pname = "ergo";
2024-01-16 06:18:59 +01:00
version = "2.13.0";
2022-01-12 20:35:25 +01:00
src = fetchFromGitHub {
owner = "ergochat";
repo = "ergo";
rev = "v${version}";
2024-01-16 06:18:59 +01:00
sha256 = "sha256-EoYyLmz6MfLkLY0WbHfFvKwrcWApty6/+UCslm8P0Q0=";
2022-01-12 20:35:25 +01:00
};
2023-04-19 17:46:19 +02:00
vendorHash = null;
2022-01-12 20:35:25 +01:00
2022-01-12 21:47:27 +01:00
passthru.tests.ergochat = nixosTests.ergochat;
2022-01-12 20:35:25 +01: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;
};
}