summary refs log tree commit diff
path: root/pkgs/tools/security
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2022-11-24 12:21:02 +0100
committerFabian Affolter <mail@fabian-affolter.ch>2022-11-24 12:21:02 +0100
commit2dc0434dcc0481f3c99bc1668a10a1359ab027c5 (patch)
tree1d912099cefba71e17aaee2b2707aedf56e10e05 /pkgs/tools/security
parent40d418d6e65e89827c51edc0c0737a60743a2f8f (diff)
downloadnixpkgs-2dc0434dcc0481f3c99bc1668a10a1359ab027c5.tar
nixpkgs-2dc0434dcc0481f3c99bc1668a10a1359ab027c5.tar.gz
nixpkgs-2dc0434dcc0481f3c99bc1668a10a1359ab027c5.tar.bz2
nixpkgs-2dc0434dcc0481f3c99bc1668a10a1359ab027c5.tar.lz
nixpkgs-2dc0434dcc0481f3c99bc1668a10a1359ab027c5.tar.xz
nixpkgs-2dc0434dcc0481f3c99bc1668a10a1359ab027c5.tar.zst
nixpkgs-2dc0434dcc0481f3c99bc1668a10a1359ab027c5.zip
threatest: init at 1.1.0
Diffstat (limited to 'pkgs/tools/security')
-rw-r--r--pkgs/tools/security/threatest/default.nix26
1 files changed, 26 insertions, 0 deletions
diff --git a/pkgs/tools/security/threatest/default.nix b/pkgs/tools/security/threatest/default.nix
new file mode 100644
index 00000000000..8af45fd580d
--- /dev/null
+++ b/pkgs/tools/security/threatest/default.nix
@@ -0,0 +1,26 @@
+{ lib
+, buildGoModule
+, fetchFromGitHub
+}:
+
+buildGoModule rec {
+  pname = "threatest";
+  version = "1.1.0";
+
+  src = fetchFromGitHub {
+    owner = "DataDog";
+    repo = pname;
+    rev = "refs/tags/v${version}";
+    hash = "sha256-ehyE19VGSLykJUOXoYMFr2Y82Bwpj2ZK5//VJybVAtk=";
+  };
+
+  vendorHash = "sha256-vTzgxByZ2BC7nuq/+LJV7LR0KsUxh1EbHFe81PwqCJc=";
+
+  meta = with lib; {
+    description = "Framework for end-to-end testing threat detection rules";
+    homepage = "https://github.com/DataDog/threatest";
+    changelog = "https://github.com/DataDog/threatest/releases/tag/v${version}";
+    license = licenses.asl20;
+    maintainers = with maintainers; [ fab ];
+  };
+}