mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-27 23:02:16 -05:00
gnu: Add slirp4netns.
* gnu/packages/containers.scm (slirp4netns): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
f4ee4523eb
commit
a45e05a80f
1 changed files with 41 additions and 0 deletions
|
@ -171,3 +171,44 @@ (define-public libslirp
|
|||
"libslirp is a user-mode networking library used by virtual machines,
|
||||
containers or various tools.")
|
||||
(license license:bsd-3)))
|
||||
|
||||
(define-public slirp4netns
|
||||
(package
|
||||
(name "slirp4netns")
|
||||
(version "1.1.12")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/rootless-containers/slirp4netns")
|
||||
(commit (string-append "v" version))))
|
||||
(sha256
|
||||
(base32 "03llv4dlf7qqxwz4zdyk926g4bigfj2gb50glm70ciflpvzs8081"))
|
||||
(file-name (git-file-name name version))))
|
||||
(build-system gnu-build-system)
|
||||
(arguments
|
||||
'(#:tests? #f ; XXX: open("/dev/net/tun"): No such file or directory
|
||||
#:phases (modify-phases %standard-phases
|
||||
(add-after 'unpack 'fix-hardcoded-paths
|
||||
(lambda _
|
||||
(substitute* (find-files "tests" "\\.sh")
|
||||
(("ping") "/run/setuid-programs/ping")))))))
|
||||
(inputs
|
||||
(list glib
|
||||
libcap
|
||||
libseccomp
|
||||
libslirp))
|
||||
(native-inputs
|
||||
(list automake
|
||||
autoconf
|
||||
iproute ; iproute, jq, nmap (ncat) and util-linux are for tests
|
||||
jq
|
||||
nmap
|
||||
pkg-config
|
||||
util-linux))
|
||||
(home-page "https://github.com/rootless-containers/slirp4netns")
|
||||
(synopsis "User-mode networking for unprivileged network namespaces")
|
||||
(description
|
||||
"slirp4netns provides user-mode networking (\"slirp\") for unprivileged
|
||||
network namespaces.")
|
||||
(license license:gpl2+)))
|
||||
|
|
Loading…
Reference in a new issue