summary refs log tree commit diff
path: root/pkgs/tools/security/fierce
diff options
context:
space:
mode:
authorc0bw3b <c0bw3b@users.noreply.github.com>2019-05-19 18:45:17 +0200
committerc0bw3b <c0bw3b@users.noreply.github.com>2019-05-20 20:49:28 +0200
commit78d09f168a881f3c13da9a4c20dcd93296a4d335 (patch)
treefb70c0c7549dc64d4fef9be1469320887eb75838 /pkgs/tools/security/fierce
parent092791c8b1c9794270ea7d3f0029726f829acb70 (diff)
downloadnixpkgs-78d09f168a881f3c13da9a4c20dcd93296a4d335.tar
nixpkgs-78d09f168a881f3c13da9a4c20dcd93296a4d335.tar.gz
nixpkgs-78d09f168a881f3c13da9a4c20dcd93296a4d335.tar.bz2
nixpkgs-78d09f168a881f3c13da9a4c20dcd93296a4d335.tar.lz
nixpkgs-78d09f168a881f3c13da9a4c20dcd93296a4d335.tar.xz
nixpkgs-78d09f168a881f3c13da9a4c20dcd93296a4d335.tar.zst
nixpkgs-78d09f168a881f3c13da9a4c20dcd93296a4d335.zip
fierce: init at 1.3.0
Co-authored-by: Robin Gloster <mail@glob.in>
Diffstat (limited to 'pkgs/tools/security/fierce')
-rw-r--r--pkgs/tools/security/fierce/default.nix23
1 files changed, 23 insertions, 0 deletions
diff --git a/pkgs/tools/security/fierce/default.nix b/pkgs/tools/security/fierce/default.nix
new file mode 100644
index 00000000000..abc1bacd212
--- /dev/null
+++ b/pkgs/tools/security/fierce/default.nix
@@ -0,0 +1,23 @@
+{ stdenv, fetchFromGitHub, python3 }:
+
+python3.pkgs.buildPythonApplication rec {
+  pname = "fierce";
+  version = "1.3.0";
+
+  src = fetchFromGitHub {
+    owner = "mschwager";
+    repo = pname;
+    rev = version;
+    sha256 = "0cdp9rpabazyfnks30rsf3qfdi40z1bkspxk4ds9bm82kpq33jxy";
+  };
+
+  propagatedBuildInputs = [ python3.pkgs.dns ];
+
+  meta = with stdenv.lib; {
+    homepage = "https://github.com/mschwager/fierce";
+    description = "DNS reconnaissance tool for locating non-contiguous IP space";
+    license = licenses.gpl3Plus;
+    maintainers = with maintainers; [ c0bw3b globin ];
+    platforms = platforms.all;
+  };
+}