all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#53006] [PATCH] gnu: networking: Add arp-scan
@ 2022-01-04 15:26 manolis837
  2022-01-04 15:27 ` Manolis Ragkousis
  0 siblings, 1 reply; 4+ messages in thread
From: manolis837 @ 2022-01-04 15:26 UTC (permalink / raw)
  To: 53006; +Cc: Manolis Ragkousis

From: Manolis Ragkousis <manolis837@gmail.com>

* gnu/packages/networking.scm (arp-scan): New variable.
---
 gnu/packages/networking.scm | 21 +++++++++++++++++++++
 1 file changed, 21 insertions(+)

diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm
index cc9cc61164..7bcd513e41 100644
--- a/gnu/packages/networking.scm
+++ b/gnu/packages/networking.scm
@@ -4143,3 +4143,24 @@ (define-public putty
 implementations.")
     (home-page "https://www.chiark.greenend.org.uk/~sgtatham/putty/")
     (license license:expat)))
+
+(define-public arp-scan
+  (package
+    (name "arp-scan")
+    (version "1.9")
+    (source
+     (origin
+       (method url-fetch)
+       ;; https://github.com/royhills/arp-scan/releases/download/1.9/arp-scan-1.9.tar.gz
+       (uri (string-append "https://github.com/royhills/arp-scan/"
+                           "releases/download/" version "/"
+                           name "-" version ".tar.gz"))
+       (sha256
+        (base32 "14nqjzbmnlx2nac7lwa93y5m5iqk3layakyxyvfmvs283k3qm46f"))))
+    (build-system gnu-build-system)
+    (inputs
+     `(("libpcap" ,libpcap)))
+    (home-page "https://github.com/royhills/arp-scan")
+    (synopsis "Dscover and fingerprint IP hosts on the local network using ARP")
+    (description "A tool that uses ARP to discover and fingerprint IP hosts on the local network")
+    (license license:gpl3)))
-- 
2.33.1





^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [bug#53006] [PATCH] gnu: networking: Add arp-scan
  2022-01-04 15:26 [bug#53006] [PATCH] gnu: networking: Add arp-scan manolis837
@ 2022-01-04 15:27 ` Manolis Ragkousis
  2022-01-04 15:32   ` Manolis Ragkousis
  0 siblings, 1 reply; 4+ messages in thread
From: Manolis Ragkousis @ 2022-01-04 15:27 UTC (permalink / raw)
  To: 53006

Everyone, sorry this is the wrong patch. I sent the previous version
by mistake. Will send the correct one shortly. Ignore this.

On Tue, 4 Jan 2022 at 17:26, <manolis837@gmail.com> wrote:
>
> From: Manolis Ragkousis <manolis837@gmail.com>
>
> * gnu/packages/networking.scm (arp-scan): New variable.
> ---
>  gnu/packages/networking.scm | 21 +++++++++++++++++++++
>  1 file changed, 21 insertions(+)
>
> diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm
> index cc9cc61164..7bcd513e41 100644
> --- a/gnu/packages/networking.scm
> +++ b/gnu/packages/networking.scm
> @@ -4143,3 +4143,24 @@ (define-public putty
>  implementations.")
>      (home-page "https://www.chiark.greenend.org.uk/~sgtatham/putty/")
>      (license license:expat)))
> +
> +(define-public arp-scan
> +  (package
> +    (name "arp-scan")
> +    (version "1.9")
> +    (source
> +     (origin
> +       (method url-fetch)
> +       ;; https://github.com/royhills/arp-scan/releases/download/1.9/arp-scan-1.9.tar.gz
> +       (uri (string-append "https://github.com/royhills/arp-scan/"
> +                           "releases/download/" version "/"
> +                           name "-" version ".tar.gz"))
> +       (sha256
> +        (base32 "14nqjzbmnlx2nac7lwa93y5m5iqk3layakyxyvfmvs283k3qm46f"))))
> +    (build-system gnu-build-system)
> +    (inputs
> +     `(("libpcap" ,libpcap)))
> +    (home-page "https://github.com/royhills/arp-scan")
> +    (synopsis "Dscover and fingerprint IP hosts on the local network using ARP")
> +    (description "A tool that uses ARP to discover and fingerprint IP hosts on the local network")
> +    (license license:gpl3)))
> --
> 2.33.1
>




^ permalink raw reply	[flat|nested] 4+ messages in thread

* [bug#53006] [PATCH] gnu: networking: Add arp-scan
  2022-01-04 15:27 ` Manolis Ragkousis
@ 2022-01-04 15:32   ` Manolis Ragkousis
  2022-01-04 15:40     ` bug#53006: " Manolis Ragkousis
  0 siblings, 1 reply; 4+ messages in thread
From: Manolis Ragkousis @ 2022-01-04 15:32 UTC (permalink / raw)
  To: 53006

Please close I sent the wrong patch.

On Tue, 4 Jan 2022 at 17:27, Manolis Ragkousis <manolis837@gmail.com> wrote:
>
> Everyone, sorry this is the wrong patch. I sent the previous version
> by mistake. Will send the correct one shortly. Ignore this.
>
> On Tue, 4 Jan 2022 at 17:26, <manolis837@gmail.com> wrote:
> >
> > From: Manolis Ragkousis <manolis837@gmail.com>
> >
> > * gnu/packages/networking.scm (arp-scan): New variable.
> > ---
> >  gnu/packages/networking.scm | 21 +++++++++++++++++++++
> >  1 file changed, 21 insertions(+)
> >
> > diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm
> > index cc9cc61164..7bcd513e41 100644
> > --- a/gnu/packages/networking.scm
> > +++ b/gnu/packages/networking.scm
> > @@ -4143,3 +4143,24 @@ (define-public putty
> >  implementations.")
> >      (home-page "https://www.chiark.greenend.org.uk/~sgtatham/putty/")
> >      (license license:expat)))
> > +
> > +(define-public arp-scan
> > +  (package
> > +    (name "arp-scan")
> > +    (version "1.9")
> > +    (source
> > +     (origin
> > +       (method url-fetch)
> > +       ;; https://github.com/royhills/arp-scan/releases/download/1.9/arp-scan-1.9.tar.gz
> > +       (uri (string-append "https://github.com/royhills/arp-scan/"
> > +                           "releases/download/" version "/"
> > +                           name "-" version ".tar.gz"))
> > +       (sha256
> > +        (base32 "14nqjzbmnlx2nac7lwa93y5m5iqk3layakyxyvfmvs283k3qm46f"))))
> > +    (build-system gnu-build-system)
> > +    (inputs
> > +     `(("libpcap" ,libpcap)))
> > +    (home-page "https://github.com/royhills/arp-scan")
> > +    (synopsis "Dscover and fingerprint IP hosts on the local network using ARP")
> > +    (description "A tool that uses ARP to discover and fingerprint IP hosts on the local network")
> > +    (license license:gpl3)))
> > --
> > 2.33.1
> >




^ permalink raw reply	[flat|nested] 4+ messages in thread

* bug#53006: [PATCH] gnu: networking: Add arp-scan
  2022-01-04 15:32   ` Manolis Ragkousis
@ 2022-01-04 15:40     ` Manolis Ragkousis
  0 siblings, 0 replies; 4+ messages in thread
From: Manolis Ragkousis @ 2022-01-04 15:40 UTC (permalink / raw)
  To: 53006-close

[-- Attachment #1: Type: text/plain, Size: 2058 bytes --]

On Tue, 4 Jan 2022, 17:32 Manolis Ragkousis, <manolis837@gmail.com> wrote:

> Please close I sent the wrong patch.
>
> On Tue, 4 Jan 2022 at 17:27, Manolis Ragkousis <manolis837@gmail.com>
> wrote:
> >
> > Everyone, sorry this is the wrong patch. I sent the previous version
> > by mistake. Will send the correct one shortly. Ignore this.
> >
> > On Tue, 4 Jan 2022 at 17:26, <manolis837@gmail.com> wrote:
> > >
> > > From: Manolis Ragkousis <manolis837@gmail.com>
> > >
> > > * gnu/packages/networking.scm (arp-scan): New variable.
> > > ---
> > >  gnu/packages/networking.scm | 21 +++++++++++++++++++++
> > >  1 file changed, 21 insertions(+)
> > >
> > > diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm
> > > index cc9cc61164..7bcd513e41 100644
> > > --- a/gnu/packages/networking.scm
> > > +++ b/gnu/packages/networking.scm
> > > @@ -4143,3 +4143,24 @@ (define-public putty
> > >  implementations.")
> > >      (home-page "https://www.chiark.greenend.org.uk/~sgtatham/putty/")
> > >      (license license:expat)))
> > > +
> > > +(define-public arp-scan
> > > +  (package
> > > +    (name "arp-scan")
> > > +    (version "1.9")
> > > +    (source
> > > +     (origin
> > > +       (method url-fetch)
> > > +       ;;
> https://github.com/royhills/arp-scan/releases/download/1.9/arp-scan-1.9.tar.gz
> > > +       (uri (string-append "https://github.com/royhills/arp-scan/"
> > > +                           "releases/download/" version "/"
> > > +                           name "-" version ".tar.gz"))
> > > +       (sha256
> > > +        (base32
> "14nqjzbmnlx2nac7lwa93y5m5iqk3layakyxyvfmvs283k3qm46f"))))
> > > +    (build-system gnu-build-system)
> > > +    (inputs
> > > +     `(("libpcap" ,libpcap)))
> > > +    (home-page "https://github.com/royhills/arp-scan")
> > > +    (synopsis "Dscover and fingerprint IP hosts on the local network
> using ARP")
> > > +    (description "A tool that uses ARP to discover and fingerprint IP
> hosts on the local network")
> > > +    (license license:gpl3)))
> > > --
> > > 2.33.1
> > >
>

[-- Attachment #2: Type: text/html, Size: 3608 bytes --]

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2022-01-04 15:42 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-01-04 15:26 [bug#53006] [PATCH] gnu: networking: Add arp-scan manolis837
2022-01-04 15:27 ` Manolis Ragkousis
2022-01-04 15:32   ` Manolis Ragkousis
2022-01-04 15:40     ` bug#53006: " Manolis Ragkousis

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.