about summary refs log tree commit diff
path: root/pkgs/tools/security/nmap
diff options
context:
space:
mode:
authorMaximilian Bosch <maximilian@mbosch.me>2020-11-27 11:04:17 +0100
committerMaximilian Bosch <maximilian@mbosch.me>2020-11-27 11:05:15 +0100
commitfcbedf65aa21e7fa8b437519dd599447f4d35aca (patch)
tree39fc05a947b194db16b2219fdf65d28a521a6bec /pkgs/tools/security/nmap
parent19908dd99da03196ffbe9d30e7ee01c7e7cc614d (diff)
Revert "nmap: 7.80 -> 7.90"
This reverts commit c426ccf116375f8eb17b3dafa78ed05af942fb89.

License has changed in 7.90 and we should decide first how to proceed.
See #105119 for further context.
Diffstat (limited to 'pkgs/tools/security/nmap')
-rw-r--r--pkgs/tools/security/nmap/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/security/nmap/default.nix b/pkgs/tools/security/nmap/default.nix
index f03a794b6800f..bd543154494cf 100644
--- a/pkgs/tools/security/nmap/default.nix
+++ b/pkgs/tools/security/nmap/default.nix
@@ -12,11 +12,11 @@ with stdenv.lib;
 
 stdenv.mkDerivation rec {
   name = "nmap${optionalString graphicalSupport "-graphical"}-${version}";
-  version = "7.90";
+  version = "7.80";
 
   src = fetchurl {
     url = "https://nmap.org/dist/nmap-${version}.tar.bz2";
-    sha256 = "1s20i84m9bci70lrl0p2j7h3kpbi9snmvyhc3lzc9s3mh92w6msm";
+    sha256 = "1aizfys6l9f9grm82bk878w56mg0zpkfns3spzj157h98875mypw";
   };
 
   patches = [ ./zenmap.patch ]