sys-apps/nix: new package, add 2.15.0-r1

This commit is contained in:
root 2024-05-07 16:09:09 +02:00
parent b694aeb62f
commit 5948749941
8 changed files with 527 additions and 0 deletions

View file

@ -0,0 +1,15 @@
#!/sbin/openrc-run
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
start() {
ebegin "Starting ${SVCNAME}"
start-stop-daemon --start --quiet --background --exec /usr/bin/nix-daemon
eend ${?}
}
stop() {
ebegin "Stopping ${SVCNAME}"
start-stop-daemon --stop --quiet --exec /usr/bin/nix-daemon
eend ${?}
}