summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSandro <sandro.jaeckel@gmail.com>2021-01-27 11:22:06 +0100
committerGitHub <noreply@github.com>2021-01-27 11:22:06 +0100
commit78b5cfc15a06c7c2aff2d7fd5597830bb1e0626d (patch)
tree691e4b68c50b3eec82646a1663490c4473ce99c6
parentb1c006f05599b41b798e47baa4d9ba6d1a8c07a5 (diff)
parent7072a7efd81a8f5bb859468f934f3e778117305a (diff)
Merge pull request #110894 from fabaff/bump-masscan
-rw-r--r--pkgs/tools/security/masscan/default.nix17
1 files changed, 9 insertions, 8 deletions
diff --git a/pkgs/tools/security/masscan/default.nix b/pkgs/tools/security/masscan/default.nix
index 0f45edcff6cf..f92ac978f6ed 100644
--- a/pkgs/tools/security/masscan/default.nix
+++ b/pkgs/tools/security/masscan/default.nix
@@ -2,13 +2,13 @@
stdenv.mkDerivation rec {
pname = "masscan";
- version = "1.3.0";
+ version = "1.3.1";
src = fetchFromGitHub {
- owner = "robertdavidgraham";
- repo = "masscan";
- rev = version;
- sha256 = "04nlnficybgxa16kq9fwrrfjsbyiaps4mikfqgdr206fkqk9i05y";
+ owner = "robertdavidgraham";
+ repo = "masscan";
+ rev = version;
+ sha256 = "sha256-gH0zOf2kl6cqws1nB3QPtaAjpvNAgbawXRx77bqJTIc=";
};
nativeBuildInputs = [ makeWrapper ];
@@ -34,9 +34,10 @@ stdenv.mkDerivation rec {
meta = with lib; {
description = "Fast scan of the Internet";
- homepage = "https://github.com/robertdavidgraham/masscan";
- license = licenses.agpl3;
- platforms = platforms.unix;
+ homepage = "https://github.com/robertdavidgraham/masscan";
+ changelog = "https://github.com/robertdavidgraham/masscan/releases/tag/${version}";
+ license = licenses.agpl3Only;
+ platforms = platforms.unix;
maintainers = with maintainers; [ rnhmjoj ];
};
}