about summary refs log tree commit diff
path: root/pkgs/tools/security/nmap
diff options
context:
space:
mode:
authorFelix Buehler <account@buehler.rocks>2021-12-01 13:46:39 +0100
committerFelix Buehler <account@buehler.rocks>2021-12-05 15:38:17 +0100
commit8d0267dc8f02e010785d6f90573ea1135b7957e7 (patch)
tree9987a4f25d9c939dab4544a74a8a454469ce16b2 /pkgs/tools/security/nmap
parentaf6071db609bdf86f5d36f0bc4a4ac0fe8e92c35 (diff)
treewide: use pname&version instead of name
Diffstat (limited to 'pkgs/tools/security/nmap')
-rw-r--r--pkgs/tools/security/nmap/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/tools/security/nmap/default.nix b/pkgs/tools/security/nmap/default.nix
index ff416f793e1c2..69bea2ac54ff5 100644
--- a/pkgs/tools/security/nmap/default.nix
+++ b/pkgs/tools/security/nmap/default.nix
@@ -11,7 +11,7 @@
 with lib;
 
 stdenv.mkDerivation rec {
-  name = "nmap${optionalString graphicalSupport "-graphical"}-${version}";
+  pname = "nmap${optionalString graphicalSupport "-graphical"}";
   version = "7.92";
 
   src = fetchurl {