guix-patches
[Top][All Lists]
Advanced

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

[bug#54457] [PATCH 7/9] gnu: Add nfacct


From: fesoj000
Subject: [bug#54457] [PATCH 7/9] gnu: Add nfacct
Date: Sat, 19 Mar 2022 01:47:44 +0100
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:91.0) Gecko/20100101 Thunderbird/91.7.0

* gnu/packages/linux.scm (nfacct): New variable.
---
 gnu/packages/linux.scm | 31 +++++++++++++++++++++++++++++++
 1 file changed, 31 insertions(+)

diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm
index fdd5d6a59d..183f6ef5b4 100644
--- a/gnu/packages/linux.scm
+++ b/gnu/packages/linux.scm
@@ -7408,6 +7408,37 @@ (define-public libnetfilter-acct
    (home-page "https://netfilter.org/projects/libnetfilter_acct/index.html";)
    (license license:lgpl2.1)))
+(define-public nfacct
+  (package
+   (name "nfacct")
+   (version "1.0.2")
+   (source
+    (origin
+     (method url-fetch)
+     (uri (string-append "https://netfilter.org/projects/"; name "/files/" name
+                         "-" version ".tar.bz2"))
+     (sha256
+      (base32
+       "0sdxbxjyapbqcp2ami5jd10vz4xbbdvx39f3wfy1iqsbflc25zzc"))))
+   (build-system gnu-build-system)
+   (native-inputs (list pkg-config libmnl libnetfilter-acct))
+   (synopsis "Command line tool to create/retrieve/delete accounting objects")
+   (description "nfacct is the command line tool to create/retrieve/delete
+accounting objects
+@enumerate
+@item
+listing the objects of the nfacct table in plain text/XML
+@item
+atomically get and reset objects of the nfacct table
+@item
+adding new objects to the nfacct table
+@item
+deleting objects from the nfacct table
+@end enumerate
+")
+   (home-page "https://netfilter.org/projects/nfacct/index.html";)
+   (license license:gpl2)))
+
 (define-public proot
   (package
     (name "proot")
--
2.34.0






reply via email to

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