Merge pull request #236527 from fabaff/ntlmrecon-update
ntlmrecon: add changelog to meta
This commit is contained in:
commit
a90625da27
1 changed files with 7 additions and 3 deletions
|
@ -6,12 +6,12 @@
|
||||||
python3.pkgs.buildPythonApplication rec {
|
python3.pkgs.buildPythonApplication rec {
|
||||||
pname = "ntlmrecon";
|
pname = "ntlmrecon";
|
||||||
version = "0.4";
|
version = "0.4";
|
||||||
disabled = python3.pythonOlder "3.6";
|
format = "setuptools";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "pwnfoo";
|
owner = "pwnfoo";
|
||||||
repo = "NTLMRecon";
|
repo = "NTLMRecon";
|
||||||
rev = "v-${version}";
|
rev = "refs/tags/v-${version}";
|
||||||
sha256 = "0rrx49li2l9xlcax84qxjf60nbzp3fgq77c36yqmsp0pc9i89ah6";
|
sha256 = "0rrx49li2l9xlcax84qxjf60nbzp3fgq77c36yqmsp0pc9i89ah6";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -24,11 +24,15 @@ python3.pkgs.buildPythonApplication rec {
|
||||||
|
|
||||||
# Project has no tests
|
# Project has no tests
|
||||||
doCheck = false;
|
doCheck = false;
|
||||||
pythonImportsCheck = [ "ntlmrecon" ];
|
|
||||||
|
pythonImportsCheck = [
|
||||||
|
"ntlmrecon"
|
||||||
|
];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Information enumerator for NTLM authentication enabled web endpoints";
|
description = "Information enumerator for NTLM authentication enabled web endpoints";
|
||||||
homepage = "https://github.com/pwnfoo/NTLMRecon";
|
homepage = "https://github.com/pwnfoo/NTLMRecon";
|
||||||
|
changelog = "https://github.com/pwnfoo/NTLMRecon/releases/tag/v-${version}";
|
||||||
license = with licenses; [ mit ];
|
license = with licenses; [ mit ];
|
||||||
maintainers = with maintainers; [ fab ];
|
maintainers = with maintainers; [ fab ];
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue