mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: Add libnetfilter-cthelper
* gnu/packages/linux.scm (libnetfilter-cthelper): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
0f31129e4e
commit
6d9cfb91aa
1 changed files with 31 additions and 0 deletions
|
@ -7348,6 +7348,37 @@ by conntrack-tools.")
|
||||||
(supported-systems (filter target-linux? %supported-systems))
|
(supported-systems (filter target-linux? %supported-systems))
|
||||||
(license license:gpl2)))
|
(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
|
(define-public proot
|
||||||
(package
|
(package
|
||||||
(name "proot")
|
(name "proot")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue