mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: Add tcptrack.
* gnu/packages/admin.scm (tcptrack): New variable. Modified-by: Maxim Cournoyer <maxim.cournoyer@gmail.com> Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com> Reviewed-by: Jelle Licht <jlicht@fsfe.org>
This commit is contained in:
parent
71381703db
commit
2e568050d7
1 changed files with 22 additions and 0 deletions
|
@ -4276,6 +4276,28 @@ on systems running the Linux kernel.")
|
||||||
(supported-systems '("i686-linux" "x86_64-linux"))
|
(supported-systems '("i686-linux" "x86_64-linux"))
|
||||||
(license license:gpl2)))
|
(license license:gpl2)))
|
||||||
|
|
||||||
|
(define-public tcptrack
|
||||||
|
(package
|
||||||
|
(name "tcptrack")
|
||||||
|
(version "1.4.3")
|
||||||
|
(source (origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/bchretien/tcptrack")
|
||||||
|
(commit (string-append "v" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"08lh3l67wn4kq9q0nfspc7rj0jvp9dzwjgxpvqliwcif8cy5mi45"))))
|
||||||
|
(build-system gnu-build-system)
|
||||||
|
(inputs (list libpcap ncurses))
|
||||||
|
(synopsis "TCP connections sniffer")
|
||||||
|
(description
|
||||||
|
"Tcptrack is a sniffer which displays information about TCP connections
|
||||||
|
it sees on a network interface. This is a fork of Steve Benson’s tcptrack.")
|
||||||
|
(home-page "https://github.com/bchretien/tcptrack")
|
||||||
|
(license license:lgpl2.1+)))
|
||||||
|
|
||||||
(define-public masscan
|
(define-public masscan
|
||||||
(package
|
(package
|
||||||
(name "masscan")
|
(name "masscan")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue