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-12-11 23:50:31 +0100
committerFabian Affolter <mail@fabian-affolter.ch>2021-12-11 23:50:31 +0100
commit6fab6f5665ffcd9afe70178dd7ea4ec0167bdb7f (patch)
tree65e8fd1f406878b60c6c3612f52dafc4315f21c9 /pkgs/tools/security/dnsrecon
parent445638d3ecdc239e62d78cfee776a01753d03e11 (diff)
dnsrecon: 0.10.1 -> 1.0.0
Diffstat (limited to 'pkgs/tools/security/dnsrecon')
-rw-r--r--pkgs/tools/security/dnsrecon/default.nix17
1 files changed, 9 insertions, 8 deletions
diff --git a/pkgs/tools/security/dnsrecon/default.nix b/pkgs/tools/security/dnsrecon/default.nix
index 6fa2041de3c0f..e3fe955eb9f13 100644
--- a/pkgs/tools/security/dnsrecon/default.nix
+++ b/pkgs/tools/security/dnsrecon/default.nix
@@ -5,19 +5,20 @@
 
 python3.pkgs.buildPythonApplication rec {
   pname = "dnsrecon";
-  version = "0.10.1";
+  version = "1.0.0";
+  format = "other";
 
   src = fetchFromGitHub {
     owner = "darkoperator";
     repo = pname;
     rev = version;
-    sha256 = "1ysf8wx287psfk89r0i2vgnrjvxdj44s6nhf6sva59jbwvr9lghy";
+    sha256 = "sha256-VRO5ugr/+iZh+hh3tVs/JNAr7GXao/HK43O3FlkbcSM=";
   };
 
-  format = "other";
-
-  pythonPath = with python3.pkgs; [
-    dnspython netaddr lxml
+  propagatedBuildInputs = with python3.pkgs; [
+    dnspython
+    netaddr
+    lxml
   ];
 
   postPatch = ''
@@ -36,11 +37,11 @@ python3.pkgs.buildPythonApplication rec {
     runHook postInstall
   '';
 
+
   meta = with lib; {
-    description = "DNS Enumeration Script";
+    description = "DNS Enumeration script";
     homepage = "https://github.com/darkoperator/dnsrecon";
     license = licenses.gpl2Only;
-    platforms = platforms.all;
     maintainers = with maintainers; [ c0bw3b fab ];
   };
 }