net-misc/gnatsd - 9999 (mva)

Search

Install

Install this version:

emerge -a =net-misc/gnatsd-9999

If this version is masked, you can unmask it using the autounmask tool or standard emerge options:

autounmask =net-misc/gnatsd-9999

Or alternatively:

emerge --autounmask-write -a =net-misc/gnatsd-9999

Package Information

Description:
A high Performance NATS Server written in GoLang
Homepage:
https://nats.io
License:
MIT

Ebuild Details

Version EAPI Keywords Slot
9999 8 0
View Raw Ebuild
# Copyright 2026 mva
# Distributed under the terms of the Public Domain or CC0 License

EAPI=8

inherit go-module git-r3 systemd

DESCRIPTION="A high Performance NATS Server written in GoLang"
HOMEPAGE="https://nats.io"

EGIT_REPO_URI="https://github.com/nats-io/gnatsd"

LICENSE="MIT"
SLOT="0"

DOCS=( README.md conf/simple.conf )

src_unpack() {
	git-r3_src_unpack
	go-module_live_vendor
}

src_compile() {
	GOARCH= ego build
}

src_install() {
	dobin nats-server
	einstalldocs
	systemd_dounit util/*.service
}

Inherited Eclasses