summary refs log tree commit diff
diff options
context:
space:
mode:
authorMatthias Thym <git@thym.at>2023-08-30 16:10:10 +0200
committerMatthias Thym <git@thym.at>2023-08-30 16:10:10 +0200
commite0192b625cf591f12831f2a3752349c8ed8ac775 (patch)
tree05becfd8d9c6ba65aa5876b88f8995d2017f5a79
parent23618ec15bb033a9f81dfeab604f9270087973fa (diff)
downloadnixpkgs-e0192b625cf591f12831f2a3752349c8ed8ac775.tar
nixpkgs-e0192b625cf591f12831f2a3752349c8ed8ac775.tar.gz
nixpkgs-e0192b625cf591f12831f2a3752349c8ed8ac775.tar.bz2
nixpkgs-e0192b625cf591f12831f2a3752349c8ed8ac775.tar.lz
nixpkgs-e0192b625cf591f12831f2a3752349c8ed8ac775.tar.xz
nixpkgs-e0192b625cf591f12831f2a3752349c8ed8ac775.tar.zst
nixpkgs-e0192b625cf591f12831f2a3752349c8ed8ac775.zip
ipscan: refactor meta and add totoroot as maintainer
-rw-r--r--pkgs/tools/security/ipscan/default.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/pkgs/tools/security/ipscan/default.nix b/pkgs/tools/security/ipscan/default.nix
index 9632e7371df..72a44a4ab8a 100644
--- a/pkgs/tools/security/ipscan/default.nix
+++ b/pkgs/tools/security/ipscan/default.nix
@@ -42,12 +42,13 @@ stdenv.mkDerivation rec {
   '';
 
   meta = with lib; {
-    description = "Fast and friendly network scanner";
+    description = "Angry IP Scanner - fast and friendly network scanner";
     homepage = "https://angryip.org";
+    downloadPage = "https://github.com/angryip/ipscan/releases/tag/${version}";
     changelog = "https://github.com/angryip/ipscan/blob/${version}/CHANGELOG";
     sourceProvenance = with sourceTypes; [ binaryBytecode ];
     license = licenses.gpl2Only;
     platforms = [ "x86_64-linux" ];
-    maintainers = with maintainers; [ kylesferrazza ];
+    maintainers = with maintainers; [ kylesferrazza totoroot ];
   };
 }