gnu: nmap: Update to 7.70.
* gnu/packages/admin.scm (nmap): Update to 7.70. [source](snippet): End on #t. [inputs]: Add ZLIB.master
parent
0e4d067f9e
commit
069d0b7f91
|
@ -1736,30 +1736,34 @@ done with the @code{auditctl} utility.")
|
||||||
(define-public nmap
|
(define-public nmap
|
||||||
(package
|
(package
|
||||||
(name "nmap")
|
(name "nmap")
|
||||||
(version "7.60")
|
(version "7.70")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "https://nmap.org/dist/nmap-" version
|
(uri (string-append "https://nmap.org/dist/nmap-" version
|
||||||
".tar.bz2"))
|
".tar.bz2"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"08bga42ipymmbxd7wy4x5sl26c0ir1fm3n9rc6nqmhx69z66wyd8"))
|
"063fg8adx23l4irrh5kn57hsmi1xvjkar4vm4k6g94ppan4hcyw4"))
|
||||||
(modules '((guix build utils)))
|
(modules '((guix build utils)))
|
||||||
(snippet
|
(snippet
|
||||||
'(map delete-file-recursively
|
'(begin
|
||||||
;; Remove bundled lua, pcap, and pcre libraries.
|
(map delete-file-recursively
|
||||||
;; FIXME: Remove bundled liblinear once packaged.
|
;; Remove bundled lua, pcap, and pcre libraries.
|
||||||
'("liblua"
|
;; FIXME: Remove bundled liblinear once packaged.
|
||||||
"libpcap"
|
'("liblua"
|
||||||
"libpcre"
|
"libpcap"
|
||||||
;; Remove pre-compiled binares.
|
"libpcre"
|
||||||
"mswin32")))))
|
;; Remove pre-compiled binares.
|
||||||
|
"mswin32"))
|
||||||
|
#t))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(inputs
|
(inputs
|
||||||
`(("openssl" ,openssl)
|
`(("openssl" ,openssl)
|
||||||
("libpcap" ,libpcap)
|
("libpcap" ,libpcap)
|
||||||
("pcre" ,pcre)
|
("pcre" ,pcre)
|
||||||
("lua" ,lua)
|
("lua" ,lua)
|
||||||
|
("zlib" ,zlib) ;for NSE compression support
|
||||||
|
|
||||||
;; For 'ndiff'.
|
;; For 'ndiff'.
|
||||||
("python" ,python-2)))
|
("python" ,python-2)))
|
||||||
|
|
||||||
|
|
Reference in New Issue