From 2dc0434dcc0481f3c99bc1668a10a1359ab027c5 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Thu, 24 Nov 2022 12:21:02 +0100 Subject: threatest: init at 1.1.0 --- pkgs/tools/security/threatest/default.nix | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 pkgs/tools/security/threatest/default.nix (limited to 'pkgs/tools/security/threatest') diff --git a/pkgs/tools/security/threatest/default.nix b/pkgs/tools/security/threatest/default.nix new file mode 100644 index 0000000000000..8af45fd580def --- /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 ]; + }; +} -- cgit 1.4.1