mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 22:08:16 -05:00
gnu: Add catatonit.
* gnu/packages/containers.scm (catatonit): New variable. Change-Id: Ib6948bde8204426a8cb008982cb7cc9302f9e6d6 Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
This commit is contained in:
parent
5bea6482e6
commit
2bfdc768d7
1 changed files with 28 additions and 0 deletions
|
@ -411,6 +411,34 @@ (define-public gvisor-tap-vsock
|
|||
The binary is called @command{gvproxy}.")
|
||||
(license license:asl2.0)))
|
||||
|
||||
(define-public catatonit
|
||||
(package
|
||||
(name "catatonit")
|
||||
(version "0.2.0")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (string-append
|
||||
"https://github.com/openSUSE/catatonit/releases/download/v"
|
||||
version "/catatonit.tar.xz"))
|
||||
(sha256
|
||||
(base32 "141b5lypgqib546zmldi4kqzpqfd6vvqddqqkfaz3w11fjsc4hwq"))))
|
||||
(build-system gnu-build-system)
|
||||
(native-inputs
|
||||
(list autoconf automake libtool))
|
||||
(home-page "https://github.com/openSUSE/catatonit")
|
||||
(synopsis "Container init")
|
||||
(description
|
||||
"Catatonit is a simple container init tool developed as a rewrite of
|
||||
@url{https://github.com/cyphar/initrs, initrs} in C due to the need for static
|
||||
compilation of Rust binaries with @code{musl}. Inspired by other container
|
||||
inits like @url{https://github.com/krallin/tini, tini} and
|
||||
@url{https://github.com/Yelp/dumb-init, dumb-init}, catatonit focuses on
|
||||
correct signal handling, utilizing @code{signalfd(2)} for improved stability.
|
||||
Its main purpose is to support the key usage by @code{docker-init}:
|
||||
@code{/dev/init} – <your program>, with minimal additional features planned.")
|
||||
(license license:gpl2+)))
|
||||
|
||||
(define-public podman
|
||||
(package
|
||||
(name "podman")
|
||||
|
|
Loading…
Reference in a new issue