Install this version:
emerge -a =sys-process/nitro-9999
If this version is masked, you can unmask it using the autounmask tool or standard emerge options:
autounmask =sys-process/nitro-9999
Or alternatively:
emerge --autounmask-write -a =sys-process/nitro-9999
| Version | EAPI | Keywords | Slot |
|---|---|---|---|
| 9999 | 8 | ~amd64 | 0 |
# Copyright 2026 NymphOS Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit shell-completion
DESCRIPTION="Tiny but flexible init system and process supervisor"
HOMEPAGE="https://git.vuxu.org/nitro"
if [[ "${PV}" = 9999 ]]; then
inherit git-r3
EGIT_REPO_URI="${HOMEPAGE}.git"
else
SRC_URI="${HOMEPAGE}/snapshot/${P}.tar.gz"
KEYWORDS="~amd64"
fi
LICENSE="0BSD"
SLOT="0"
src_install() {
into /
dosbin nitro
dobin nitroctl
doman nitro.8 nitroctl.1 halt.8
dodoc README.md
dozshcomp contrib/_nitroctl
}