masscan: add changelog to meta and update license

This commit is contained in:
Fabian Affolter 2021-01-27 08:22:20 +01:00
parent 7055f4b42c
commit 7072a7efd8

View File

@ -5,9 +5,9 @@ stdenv.mkDerivation rec {
version = "1.3.1"; version = "1.3.1";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "robertdavidgraham"; owner = "robertdavidgraham";
repo = "masscan"; repo = "masscan";
rev = version; rev = version;
sha256 = "sha256-gH0zOf2kl6cqws1nB3QPtaAjpvNAgbawXRx77bqJTIc="; sha256 = "sha256-gH0zOf2kl6cqws1nB3QPtaAjpvNAgbawXRx77bqJTIc=";
}; };
@ -34,9 +34,10 @@ stdenv.mkDerivation rec {
meta = with lib; { meta = with lib; {
description = "Fast scan of the Internet"; description = "Fast scan of the Internet";
homepage = "https://github.com/robertdavidgraham/masscan"; homepage = "https://github.com/robertdavidgraham/masscan";
license = licenses.agpl3; changelog = "https://github.com/robertdavidgraham/masscan/releases/tag/${version}";
platforms = platforms.unix; license = licenses.agpl3Only;
platforms = platforms.unix;
maintainers = with maintainers; [ rnhmjoj ]; maintainers = with maintainers; [ rnhmjoj ];
}; };
} }