guix-commits
[Top][All Lists]
Advanced

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

06/10: gnu: Add libnetfilter-acct


From: guix-commits
Subject: 06/10: gnu: Add libnetfilter-acct
Date: Mon, 11 Apr 2022 07:59:25 -0400 (EDT)

civodul pushed a commit to branch master
in repository guix.

commit 2d3c33b8ba1d4d418737459ec56eea908ecc1760
Author: fesoj000 <fesoj000@gmail.com>
AuthorDate: Sun Mar 27 00:34:26 2022 +0100

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

diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm
index 7e3f348a9d..3bc13d9867 100644
--- a/gnu/packages/linux.scm
+++ b/gnu/packages/linux.scm
@@ -7442,6 +7442,39 @@ similar to nftables.")
     (supported-systems (filter target-linux? %supported-systems))
     (license license:gpl2+)))
 
+(define-public libnetfilter-acct
+  (package
+    (name "libnetfilter-acct")
+    (version "1.0.3")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append "https://netfilter.org/projects/";
+                           "libnetfilter_acct/files/"
+                           "libnetfilter_acct-" version ".tar.bz2"))
+       (sha256
+        (base32
+         "06lsjndgfjsgfjr43px2n2wk3nr7whz6r405mks3887y7vpwwl22"))))
+    (build-system gnu-build-system)
+    (native-inputs (list pkg-config))
+    (inputs (list libmnl))
+    (synopsis "Library providing interface to extended accounting 
infrastructure")
+    (description "libnetfilter_acct is the userspace library providing 
interface
+to extended accounting infrastructure.
+
+@enumerate
+@item
+creating accounting objects
+@item
+retrieving accounting objects (and atomically set to zero)
+@item
+deleting accounting objects
+@end enumerate
+For the nfnetlink_acct subsystem.")
+    (home-page "https://netfilter.org/projects/libnetfilter_acct/index.html";)
+    (supported-systems (filter target-linux? %supported-systems))
+    (license license:lgpl2.1+)))
+
 (define-public proot
   (package
     (name "proot")



reply via email to

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