aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfesoj000 <fesoj000@gmail.com>2022-03-27 00:34:24 +0100
committerLudovic Courtès <ludo@gnu.org>2022-04-11 13:50:38 +0200
commitf70c8a0276702510afb9fdfda46c61e3cbaf5f2b (patch)
tree68b92435151255019ed95aecc27b1a98ca22cfad
parentfdfd6ac8ae19ddd054bd7a0934f4403fa573306e (diff)
downloadguix-f70c8a0276702510afb9fdfda46c61e3cbaf5f2b.tar.gz
guix-f70c8a0276702510afb9fdfda46c61e3cbaf5f2b.zip
gnu: Add conntrack-tools
* gnu/packages/linux.scm (conntrack-tools): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
-rw-r--r---rw-r--r--gnu/packages/emacs-xyz.scm4
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index e93669c243..1b051829af 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -12292,7 +12292,7 @@ style, or as multiple word prefixes.")
(define-public emacs-consult
(package
(name "emacs-consult")
- (version "1.5")
+ (version "1.7")
(source
(origin
(method git-fetch)
@@ -12300,7 +12300,7 @@ style, or as multiple word prefixes.")
(url "https://github.com/minad/consult")
(commit version)))
(sha256
- (base32 "0wgc30vinc62vppakwyxzfqpxqm0nl3srz4d42xs873i5bsczkab"))
+ (base32 "1xvxqv21b0d1c129dc72iajrbyyfibcv8gmv643h388p5wb69msv"))
(file-name (git-file-name name version))))
(build-system emacs-build-system)
(arguments
>
+ (build-system gnu-build-system)
+ (native-inputs (list bison flex pkg-config))
+ (inputs (list libtirpc
+ libnetfilter-conntrack
+ libnetfilter-cttimeout
+ libnetfilter-cthelper
+ libnetfilter-queue
+ libnfnetlink
+ libmnl))
+ (synopsis "Set of tools targeting the conntrack kernel subsystem")
+ (description "The tool conntrack provides a full featured interface that
+is intended to replace the old @file{/proc/net/ip_conntrack} interface. Using
+conntrack, you can view and manage the in-kernel connection tracking state
+table from userspace. On the other hand, conntrackd covers the specific
+aspects of stateful firewalls to enable highly available scenarios, and can be
+used as statistics collector as well.
+
+Since 1.2.0, the conntrack-tools includes the @command{nfct} command line
+utility. This utility only supports the nfnetlink_cttimeout by now. In the
+long run, we expect that it will replace conntrack by providing a syntax
+similar to nftables.")
+ (home-page "https://netfilter.org/projects/conntrack-tools/index.html")
+ (supported-systems (filter target-linux? %supported-systems))
+ (license license:gpl2+)))
+
(define-public proot
(package
(name "proot")