gnu: nmap: Remove input labels.
* gnu/packages/admin.scm (nmap)[inputs]: Move to conventional location, remove input labels, and order sortabetically.master
parent
b6fea89ad6
commit
3286a38c42
|
@ -3332,18 +3332,7 @@ rules is done with the @code{auditctl} utility.")
|
||||||
;; Remove pre-compiled binares.
|
;; Remove pre-compiled binares.
|
||||||
"mswin32"))))))
|
"mswin32"))))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(inputs
|
(outputs '("out" "ndiff")) ; TODO Add zenmap output
|
||||||
`(("openssl" ,openssl-3.0)
|
|
||||||
("libpcap" ,libpcap)
|
|
||||||
("pcre" ,pcre)
|
|
||||||
("lua" ,lua)
|
|
||||||
("zlib" ,zlib) ;for NSE compression support
|
|
||||||
|
|
||||||
;; For 'ndiff'.
|
|
||||||
("python" ,python-2)))
|
|
||||||
|
|
||||||
;; TODO Add zenmap output.
|
|
||||||
(outputs '("out" "ndiff"))
|
|
||||||
(arguments
|
(arguments
|
||||||
`(#:configure-flags '("--without-zenmap")
|
`(#:configure-flags '("--without-zenmap")
|
||||||
#:phases
|
#:phases
|
||||||
|
@ -3386,6 +3375,13 @@ rules is done with the @code{auditctl} utility.")
|
||||||
"check-dns")))))
|
"check-dns")))))
|
||||||
;; Nmap can't cope with out-of-source building.
|
;; Nmap can't cope with out-of-source building.
|
||||||
#:out-of-source? #f))
|
#:out-of-source? #f))
|
||||||
|
(inputs
|
||||||
|
(list libpcap
|
||||||
|
lua
|
||||||
|
openssl-3.0
|
||||||
|
pcre
|
||||||
|
zlib ; for NSE compression
|
||||||
|
python-2)) ; for ndiff
|
||||||
(home-page "https://nmap.org/")
|
(home-page "https://nmap.org/")
|
||||||
(synopsis "Network discovery and security auditing tool")
|
(synopsis "Network discovery and security auditing tool")
|
||||||
(description
|
(description
|
||||||
|
|
Reference in New Issue