about summary refs log tree commit diff
path: root/pkgs/tools/security/dnsrecon
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2021-07-16 13:09:27 +0200
committerFabian Affolter <mail@fabian-affolter.ch>2021-07-16 13:09:27 +0200
commitf7fd19220dcb7f16e84aa39b2fea8f500e09a28f (patch)
tree353f58a8175eeffb1b1e581f304c5341c32ef7d4 /pkgs/tools/security/dnsrecon
parent3191d4f0af44159e6f215b7fa975a41fd00b8f01 (diff)
dnsrecon: 0.9.1 -> 0.10.1
Diffstat (limited to 'pkgs/tools/security/dnsrecon')
-rw-r--r--pkgs/tools/security/dnsrecon/default.nix14
1 files changed, 8 insertions, 6 deletions
diff --git a/pkgs/tools/security/dnsrecon/default.nix b/pkgs/tools/security/dnsrecon/default.nix
index 5eda4e75f94b5..163728a37c687 100644
--- a/pkgs/tools/security/dnsrecon/default.nix
+++ b/pkgs/tools/security/dnsrecon/default.nix
@@ -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 ];
   };
 }