about summary refs log tree commit diff
path: root/pkgs/tools/security/tlsx
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2022-08-10 18:45:44 +0200
committerFabian Affolter <mail@fabian-affolter.ch>2022-08-10 18:45:44 +0200
commitede0203d3396dc5cbfa06dc9485dedc082533add (patch)
treefaf7e0c203dfe2271d49f41f8e954b8fd4bf48d9 /pkgs/tools/security/tlsx
parentee3be6b246f4e8cad9f161b6c46eec4ddeaa6b43 (diff)
tlsx: init at 0.0.5
Diffstat (limited to 'pkgs/tools/security/tlsx')
-rw-r--r--pkgs/tools/security/tlsx/default.nix29
1 files changed, 29 insertions, 0 deletions
diff --git a/pkgs/tools/security/tlsx/default.nix b/pkgs/tools/security/tlsx/default.nix
new file mode 100644
index 0000000000000..c616e86d793b4
--- /dev/null
+++ b/pkgs/tools/security/tlsx/default.nix
@@ -0,0 +1,29 @@
+{ lib
+, buildGoModule
+, fetchFromGitHub
+}:
+
+buildGoModule rec {
+  pname = "tlsx";
+  version = "0.0.5";
+
+  src = fetchFromGitHub {
+    owner = "projectdiscovery";
+    repo = pname;
+    rev = "v${version}";
+    hash = "sha256-zUaCUi7U757A8OVQHQV2LPVqu4o73qrp2xGrH7u2viA=";
+  };
+
+  vendorSha256 = "sha256-+pSmErlxRyDH1drri294vE+hUmlmKgh3zrKpVJVC1do=";
+
+  meta = with lib; {
+    description = "TLS grabber focused on TLS based data collection";
+    longDescription = ''
+      A fast and configurable TLS grabber focused on TLS based data
+      collection and analysis.
+    '';
+    homepage = "https://github.com/projectdiscovery/tlsx";
+    license = licenses.mit;
+    maintainers = with maintainers; [ fab ];
+  };
+}