aiodnsbrute: add changelog to meta

This commit is contained in:
Fabian Affolter 2023-03-04 16:24:16 +01:00
parent 710635f625
commit 42a0ba411d

View file

@ -14,8 +14,8 @@ buildPythonApplication rec {
src = fetchFromGitHub {
owner = "blark";
repo = pname;
rev = "v${version}";
sha256 = "sha256-cEpk71VoQJZfKeAZummkk7yjtXKSMndgo0VleYiMlWE=";
rev = "refs/tags/v${version}";
hash = "sha256-cEpk71VoQJZfKeAZummkk7yjtXKSMndgo0VleYiMlWE=";
};
# https://github.com/blark/aiodnsbrute/pull/8
@ -33,12 +33,14 @@ buildPythonApplication rec {
# no tests present
doCheck = false;
pythonImportsCheck = [ "aiodnsbrute.cli" ];
pythonImportsCheck = [
"aiodnsbrute.cli"
];
meta = with lib; {
description = "DNS brute force utility";
homepage = "https://github.com/blark/aiodnsbrute";
# https://github.com/blark/aiodnsbrute/issues/5
changelog = "https://github.com/blark/aiodnsbrute/releases/tag/v${version}";
license = with licenses; [ gpl3Only ];
maintainers = with maintainers; [ fab ];
};