about summary refs log tree commit diff
path: root/pkgs/tools/security/jaeles
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2022-01-03 08:32:00 +0100
committerFabian Affolter <mail@fabian-affolter.ch>2022-01-03 08:32:00 +0100
commit12ca21660a2081107b640f5c5858d7ab60ec39d1 (patch)
treebf317f9b9c529273d5cc3a2e8ae170144eba4549 /pkgs/tools/security/jaeles
parentd53978239b265066804a45b7607b010b9cb4c50c (diff)
jaeles: init at 0.17
Diffstat (limited to 'pkgs/tools/security/jaeles')
-rw-r--r--pkgs/tools/security/jaeles/default.nix30
1 files changed, 30 insertions, 0 deletions
diff --git a/pkgs/tools/security/jaeles/default.nix b/pkgs/tools/security/jaeles/default.nix
new file mode 100644
index 0000000000000..e6e2905ed5432
--- /dev/null
+++ b/pkgs/tools/security/jaeles/default.nix
@@ -0,0 +1,30 @@
+{ lib
+, buildGoModule
+, fetchFromGitHub
+}:
+
+buildGoModule rec {
+  pname = "jaeles";
+  version = "0.17";
+
+  src = fetchFromGitHub {
+    owner = "jaeles-project";
+    repo = pname;
+    rev = "beta-v${version}";
+    hash = "sha256-IGB+TYMOOO7fvRfDe9y+JSXuDSMDVJK+N4hS+kezG48=";
+  };
+
+  vendorSha256 = "sha256-3CKDkxvr7egHui6d8+25t9Zq2ePMUOULr+1NjEm4GXA=";
+
+  runVend = true;
+
+  # Tests want to download signatures
+  doCheck = false;
+
+  meta = with lib; {
+    description = "Tool for automated Web application testing";
+    homepage = "https://github.com/jaeles-project/jaeles";
+    license = licenses.mit;
+    maintainers = with maintainers; [ fab ];
+  };
+}