dnsrecon: 0.10.1 -> 1.0.0

This commit is contained in:
Fabian Affolter 2021-12-11 23:50:31 +01:00
parent 445638d3ec
commit 6fab6f5665

View file

@ -5,19 +5,20 @@
python3.pkgs.buildPythonApplication rec { python3.pkgs.buildPythonApplication rec {
pname = "dnsrecon"; pname = "dnsrecon";
version = "0.10.1"; version = "1.0.0";
format = "other";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "darkoperator"; owner = "darkoperator";
repo = pname; repo = pname;
rev = version; rev = version;
sha256 = "1ysf8wx287psfk89r0i2vgnrjvxdj44s6nhf6sva59jbwvr9lghy"; sha256 = "sha256-VRO5ugr/+iZh+hh3tVs/JNAr7GXao/HK43O3FlkbcSM=";
}; };
format = "other"; propagatedBuildInputs = with python3.pkgs; [
dnspython
pythonPath = with python3.pkgs; [ netaddr
dnspython netaddr lxml lxml
]; ];
postPatch = '' postPatch = ''
@ -36,11 +37,11 @@ python3.pkgs.buildPythonApplication rec {
runHook postInstall runHook postInstall
''; '';
meta = with lib; { meta = with lib; {
description = "DNS Enumeration Script"; description = "DNS Enumeration script";
homepage = "https://github.com/darkoperator/dnsrecon"; homepage = "https://github.com/darkoperator/dnsrecon";
license = licenses.gpl2Only; license = licenses.gpl2Only;
platforms = platforms.all;
maintainers = with maintainers; [ c0bw3b fab ]; maintainers = with maintainers; [ c0bw3b fab ];
}; };
} }