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
| Version | EAPI | Keywords | Slot |
|---|---|---|---|
| 9999 | 8 | 0 |
# 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
}