me
/
guix
Archived
1
0
Fork 0

gnu: Add libnetfilter-cthelper

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

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
master
fesoj000 2022-03-27 00:34:21 +01:00 committed by Ludovic Courtès
parent 0f31129e4e
commit 6d9cfb91aa
No known key found for this signature in database
GPG Key ID: 090B11993D9AEBB5
1 changed files with 31 additions and 0 deletions

View File

@ -7348,6 +7348,37 @@ by conntrack-tools.")
(supported-systems (filter target-linux? %supported-systems))
(license license:gpl2)))
(define-public libnetfilter-cthelper
(package
(name "libnetfilter-cthelper")
(version "1.0.0")
(source
(origin
(method url-fetch)
(uri (string-append "https://netfilter.org/projects/"
"libnetfilter_cthelper/files/"
"libnetfilter_cthelper-" version ".tar.bz2"))
(sha256
(base32
"0gfgzkc1fjniqwk4jxds72c0lcgfhq2591hrvjrvd9nrqiqqwq87"))))
(build-system gnu-build-system)
(native-inputs (list pkg-config))
(inputs (list libmnl))
(synopsis "Library for user-space connection tracking helpers")
(description "libnetfilter_cthelper is a userspace library that provides a
programming interface to user-space connection tracking helpers.
@enumerate
@item
register new user-space connection tracking helpers
@item
unregister user-space connection tracking helpers
@item
list existing registered user-space connection tracking helpers
@end enumerate")
(home-page "https://netfilter.org/projects/libnetfilter_cthelper/index.html")
(supported-systems (filter target-linux? %supported-systems))
(license license:gpl2+)))
(define-public proot
(package
(name "proot")