emacs-bug-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#47913: closed ([PATCH] add netdiscover)


From: GNU bug Tracking System
Subject: bug#47913: closed ([PATCH] add netdiscover)
Date: Sat, 10 Jul 2021 09:53:02 +0000

Your message dated Sat, 10 Jul 2021 15:21:48 +0530
with message-id <871r86339n.fsf@systemreboot.net>
and subject line Re: [bug#47913] is there anybody out there?
has caused the debbugs.gnu.org bug report #47913,
regarding [PATCH] add netdiscover
to be marked as done.

(If you believe you have received this mail in error, please contact
help-debbugs@gnu.org.)


-- 
47913: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=47913
GNU Bug Tracking System
Contact help-debbugs@gnu.org with problems
--- Begin Message --- Subject: [PATCH] add netdiscover Date: Tue, 20 Apr 2021 13:47:52 -0400 User-agent: Roundcube Webmail/1.3.15
---
 gnu/packages/networking.scm | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)

diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm
index f7557fc331..342621299b 100644
--- a/gnu/packages/networking.scm
+++ b/gnu/packages/networking.scm
@@ -4075,3 +4075,29 @@ IPv6 Internet connectivity - it also works over IPv4.") ;; version. This exception does not (and cannot) modify any license terms ;; which apply to the Application, with which you must still comply
      license:lgpl3)))
+
+(define-public netdiscover
+  (package
+   (name "netdiscover")
+   (version "0.7")
+   (source (origin
+            (method git-fetch)
+            (uri (git-reference
+ (url "https://github.com/netdiscover-scanner/netdiscover";)
+                  (commit version)))
+ (sha256 (base32 "0g8w8rlg16dsibxi4dnyn7v7r8wwi5ypd51c4w59j0ps2id0w8yj"))
+            (file-name (string-append "netdiscover-" version))))
+   (arguments `(#:tests? #f)) ;; no tests
+   (build-system gnu-build-system)
+   (inputs `(("libpcap" ,libpcap)
+             ("libnet" ,libnet)))
+   (native-inputs `(("automake" ,automake)
+                    ("autoconf" ,autoconf)))
+   (synopsis "Network address discovery tool")
+   (description
+ "Netdiscover is a network address discovering tool, developed mainly for +those wireless networks without dhcp server, it also works on hub/switched +networks. Its based on arp packets, it will send arp requests and sniff for
+replies.")
+   (home-page "https://github.com/netdiscover-scanner/netdiscover";)
+   (license license:gpl3)))
--
2.31.1



--- End Message ---
--- Begin Message --- Subject: Re: [bug#47913] is there anybody out there? Date: Sat, 10 Jul 2021 15:21:48 +0530
Hi Justin,

Thank you for contributing to Guix! I applied your patch with a few
corrections:

- changed commit message to conform to Guix conventions
- added a copyright header for you
- made some stylistic changes to the package description
- modified the description slightly

Thanks,
Arun

Attachment: signature.asc
Description: PGP signature


--- End Message ---

reply via email to

[Prev in Thread] Current Thread [Next in Thread]