lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #236527 from fabaff/ntlmrecon-update

ntlmrecon: add changelog to meta

authored by

Fabian Affolter and committed by
GitHub
a90625da f1c41a0c

+7 -3
+7 -3
pkgs/tools/security/ntlmrecon/default.nix
··· 6 6 python3.pkgs.buildPythonApplication rec { 7 7 pname = "ntlmrecon"; 8 8 version = "0.4"; 9 - disabled = python3.pythonOlder "3.6"; 9 + format = "setuptools"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "pwnfoo"; 13 13 repo = "NTLMRecon"; 14 - rev = "v-${version}"; 14 + rev = "refs/tags/v-${version}"; 15 15 sha256 = "0rrx49li2l9xlcax84qxjf60nbzp3fgq77c36yqmsp0pc9i89ah6"; 16 16 }; 17 17 ··· 24 24 25 25 # Project has no tests 26 26 doCheck = false; 27 - pythonImportsCheck = [ "ntlmrecon" ]; 27 + 28 + pythonImportsCheck = [ 29 + "ntlmrecon" 30 + ]; 28 31 29 32 meta = with lib; { 30 33 description = "Information enumerator for NTLM authentication enabled web endpoints"; 31 34 homepage = "https://github.com/pwnfoo/NTLMRecon"; 35 + changelog = "https://github.com/pwnfoo/NTLMRecon/releases/tag/v-${version}"; 32 36 license = with licenses; [ mit ]; 33 37 maintainers = with maintainers; [ fab ]; 34 38 };