diff options
author | Mark H Weaver <mhw@netris.org> | 2016-11-07 00:33:16 -0500 |
---|---|---|
committer | Mark H Weaver <mhw@netris.org> | 2016-11-07 00:33:16 -0500 |
commit | 71e21fb26dceef7a665b3b1c0dec7ebd92d8ec82 (patch) | |
tree | 7553a6f9ee2ed7494968e7277897098559eacf23 /gnu/packages/admin.scm | |
parent | 19ac2ba858ebc46db96364809ebfc129be9e4ccf (diff) | |
parent | 14ac8e4865206f5cd1278cd962d01ce27890d51f (diff) | |
download | guix-71e21fb26dceef7a665b3b1c0dec7ebd92d8ec82.tar.gz |
Merge branch 'master' into core-updates
Diffstat (limited to 'gnu/packages/admin.scm')
-rw-r--r-- | gnu/packages/admin.scm | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm index 0b50c8677b..5adde6cc4a 100644 --- a/gnu/packages/admin.scm +++ b/gnu/packages/admin.scm @@ -1570,14 +1570,14 @@ done with the @code{auditctl} utility.") (define-public nmap (package (name "nmap") - (version "7.12") + (version "7.31") (source (origin (method url-fetch) (uri (string-append "https://nmap.org/dist/nmap-" version ".tar.bz2")) (sha256 (base32 - "014vagh9ak10hidwzp9s6g30y5h5fhsh8wykcnc1hnn9hwm0ipv3")) + "0hiqb28950kn4bjsmw0ksfyss7j2qdmgrj3xsjf7073pq01lx7yb")) (modules '((guix build utils))) (snippet '(map delete-file-recursively @@ -1603,6 +1603,12 @@ done with the @code{auditctl} utility.") '(#:configure-flags '("--without-zenmap") #:phases (modify-phases %standard-phases + (add-after 'configure 'patch-Makefile + (lambda _ + (substitute* "Makefile" + ;; Do not attempt to build lua. + (("build-dnet build-lua") "build-dnet")) + #t)) (replace 'install (lambda* (#:key outputs #:allow-other-keys) (define (make out . args) |