From 7055f4b42c9d83e13f563f37128759bd478c9dc8 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Wed, 27 Jan 2021 08:19:51 +0100 Subject: [PATCH 1/2] masscan: 1.3.0 -> 1.3.1 --- pkgs/tools/security/masscan/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/security/masscan/default.nix b/pkgs/tools/security/masscan/default.nix index 0f45edcff6c..a192f00cef7 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"; + sha256 = "sha256-gH0zOf2kl6cqws1nB3QPtaAjpvNAgbawXRx77bqJTIc="; }; nativeBuildInputs = [ makeWrapper ]; From 7072a7efd81a8f5bb859468f934f3e778117305a Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Wed, 27 Jan 2021 08:22:20 +0100 Subject: [PATCH 2/2] masscan: add changelog to meta and update license --- pkgs/tools/security/masscan/default.nix | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/pkgs/tools/security/masscan/default.nix b/pkgs/tools/security/masscan/default.nix index a192f00cef7..f92ac978f6e 100644 --- a/pkgs/tools/security/masscan/default.nix +++ b/pkgs/tools/security/masscan/default.nix @@ -5,9 +5,9 @@ stdenv.mkDerivation rec { version = "1.3.1"; src = fetchFromGitHub { - owner = "robertdavidgraham"; - repo = "masscan"; - rev = version; + owner = "robertdavidgraham"; + repo = "masscan"; + rev = version; sha256 = "sha256-gH0zOf2kl6cqws1nB3QPtaAjpvNAgbawXRx77bqJTIc="; }; @@ -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 ]; }; }