guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

03/06: gnu: Add libslirp.


From: guix-commits
Subject: 03/06: gnu: Add libslirp.
Date: Sat, 1 Jan 2022 13:08:02 -0500 (EST)

civodul pushed a commit to branch master
in repository guix.

commit f4ee4523ebad70f80069d833c2b838543af89e18
Author: Timmy Douglas <mail@timmydouglas.com>
AuthorDate: Tue Dec 21 23:33:50 2021 -0800

    gnu: Add libslirp.
    
    * gnu/packages/containers.scm (libslirp): New variable.
    
    Signed-off-by: Ludovic Courtès <ludo@gnu.org>
---
 gnu/packages/containers.scm | 25 +++++++++++++++++++++++++
 1 file changed, 25 insertions(+)

diff --git a/gnu/packages/containers.scm b/gnu/packages/containers.scm
index 3fe8af5cbc..84f4039277 100644
--- a/gnu/packages/containers.scm
+++ b/gnu/packages/containers.scm
@@ -146,3 +146,28 @@ Container Runtime fully written in C.")
 manager (like Podman or CRI-O) and an Open Container Initiative (OCI)
 runtime (like runc or crun) for a single container.")
     (license license:asl2.0)))
+
+(define-public libslirp
+  (package
+    (name "libslirp")
+    (version "4.6.1")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://gitlab.freedesktop.org/slirp/libslirp";)
+             (commit (string-append "v" version))))
+       (sha256
+        (base32 "1b4cn51xvzbrxd63g6w1033prvbxfxsnsn1l0fa5i311xv28vkh0"))
+       (file-name (git-file-name name version))))
+    (build-system meson-build-system)
+    (inputs
+     (list glib))
+    (native-inputs
+     (list pkg-config))
+    (home-page "https://gitlab.freedesktop.org/slirp/libslirp";)
+    (synopsis "User-mode networking library")
+    (description
+     "libslirp is a user-mode networking library used by virtual machines,
+containers or various tools.")
+    (license license:bsd-3)))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]