Merge pull request #129889 from fabaff/bump-dnsrecon

dnsrecon: 0.9.1 -> 0.10.1
This commit is contained in:
Fabian Affolter 2021-07-17 11:58:20 +02:00 committed by GitHub
commit d41882c7b9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,8 +1,11 @@
{ lib, fetchFromGitHub, python3 }:
{ lib
, fetchFromGitHub
, python3
}:
python3.pkgs.buildPythonApplication rec {
pname = "dnsrecon";
version = "0.9.1";
version = "0.10.1";
src = fetchFromGitHub {
owner = "darkoperator";
@ -19,8 +22,7 @@ python3.pkgs.buildPythonApplication rec {
postPatch = ''
substituteInPlace dnsrecon.py \
--replace "namelist.txt" "../share/namelist.txt" \
--replace "0.9.0" "${version}"
--replace "namelist.txt" "../share/namelist.txt"
'';
installPhase = ''
@ -37,8 +39,8 @@ python3.pkgs.buildPythonApplication rec {
meta = with lib; {
description = "DNS Enumeration Script";
homepage = "https://github.com/darkoperator/dnsrecon";
license = licenses.gpl2;
license = licenses.gpl2Only;
platforms = platforms.all;
maintainers = with maintainers; [ c0bw3b ];
maintainers = with maintainers; [ c0bw3b fab ];
};
}