guix-commits
[Top][All Lists]
Advanced

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

02/10: gnu: Add libnetfilter-cttimeout


From: guix-commits
Subject: 02/10: gnu: Add libnetfilter-cttimeout
Date: Mon, 11 Apr 2022 07:59:24 -0400 (EDT)

civodul pushed a commit to branch master
in repository guix.

commit 0f31129e4e9864938fadf7ac1b33290c377e579b
Author: fesoj000 <fesoj000@gmail.com>
AuthorDate: Sun Mar 27 00:34:17 2022 +0100

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

diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm
index 4824f8e7b8..778a757d8b 100644
--- a/gnu/packages/linux.scm
+++ b/gnu/packages/linux.scm
@@ -7322,6 +7322,32 @@ conntrack-tools among many other applications.")
     (supported-systems (filter target-linux? %supported-systems))
     (license license:gpl2+)))
 
+(define-public libnetfilter-cttimeout
+  (package
+    (name "libnetfilter-cttimeout")
+    (version "1.0.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append "https://netfilter.org/projects/";
+                           "libnetfilter_cttimeout/files/"
+                           "libnetfilter_cttimeout-" version ".tar.bz2"))
+       (sha256
+        (base32
+         "1fpyz1zlvcq80244knvyvy87909xjqlj02lmw8yblz2m9xsi5axf"))))
+    (build-system gnu-build-system)
+    (native-inputs (list pkg-config))
+    (inputs (list libmnl))
+    (synopsis "Library for kernel connection tracking timeout infrastructure")
+    (description "libnetfilter_cttimeout is the userspace library that
+provides the programming interface to the fine-grain connection tracking
+timeout infrastructure.  With this library, you can create, update and delete
+timeout policies that can be attached to traffic flows.  This library is used
+by conntrack-tools.")
+    (home-page 
"https://netfilter.org/projects/libnetfilter_cttimeout/index.html";)
+    (supported-systems (filter target-linux? %supported-systems))
+    (license license:gpl2)))
+
 (define-public proot
   (package
     (name "proot")



reply via email to

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