dnstwist: add changelog to meta

This commit is contained in:
Fabian Affolter 2022-12-14 15:19:53 +01:00
parent 074623d912
commit 458df785b9

View file

@ -6,12 +6,13 @@
python3.pkgs.buildPythonApplication rec {
pname = "dnstwist";
version = "20221022";
format = "setuptools";
src = fetchFromGitHub {
owner = "elceef";
repo = pname;
rev = "refs/tags/${version}";
sha256 = "sha256-qdKMEE97PWkWgstJZxnFWDjc2heIbJjjCwBbl5K2zy4=";
hash = "sha256-qdKMEE97PWkWgstJZxnFWDjc2heIbJjjCwBbl5K2zy4=";
};
propagatedBuildInputs = with python3.pkgs; [
@ -33,6 +34,7 @@ python3.pkgs.buildPythonApplication rec {
meta = with lib; {
description = "Domain name permutation engine for detecting homograph phishing attacks";
homepage = "https://github.com/elceef/dnstwist";
changelog = "https://github.com/elceef/dnstwist/releases/tag/${version}";
license = with licenses; [ gpl3Only ];
maintainers = with maintainers; [ fab ];
};