gnu: Add libnetfilter-acct

* gnu/packages/linux.scm (libnetfilter-acct): New variable.

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
fesoj000 2022-03-27 00:34:26 +01:00 committed by Ludovic Courtès
parent f70c8a0276
commit 2d3c33b8ba
No known key found for this signature in database
GPG Key ID: 090B11993D9AEBB5

View File

@ -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")