about summary refs log tree commit diff
path: root/pkgs/tools/security
diff options
context:
space:
mode:
authorFabian Affolter <fabian@affolter-engineering.ch>2022-05-10 08:46:05 +0200
committerGitHub <noreply@github.com>2022-05-10 08:46:05 +0200
commit517109653f2d3a4f3cece5c15e3f24a4372d9997 (patch)
treeb09666b318d932b0b7d33b3548951fe133860d47 /pkgs/tools/security
parentf6db7459cc82b0745a528b0cd1c19d073db426dd (diff)
parent52a78362ac76d96644ea0057a8544e14ee6667a0 (diff)
Merge pull request #172239 from fabaff/zkar
zkar: init at 1.3.0
Diffstat (limited to 'pkgs/tools/security')
-rw-r--r--pkgs/tools/security/zkar/default.nix25
1 files changed, 25 insertions, 0 deletions
diff --git a/pkgs/tools/security/zkar/default.nix b/pkgs/tools/security/zkar/default.nix
new file mode 100644
index 0000000000000..315e45cb0384f
--- /dev/null
+++ b/pkgs/tools/security/zkar/default.nix
@@ -0,0 +1,25 @@
+{ lib
+, buildGoModule
+, fetchFromGitHub
+}:
+
+buildGoModule rec {
+  pname = "zkar";
+  version = "1.3.0";
+
+  src = fetchFromGitHub {
+    owner = "phith0n";
+    repo = pname;
+    rev = "v${version}";
+    hash = "sha256-TGqsiYZLbXvCc30OtvNbX4INlzw3ZfjvXal47rP7NDw=";
+  };
+
+  vendorSha256 = "sha256-HQ9qclaaDj0H8PL0oQG1WsH19wVQpynijHNcal4gWBE=";
+
+  meta = with lib; {
+    description = "Java serialization protocol analysis tool";
+    homepage = "https://github.com/phith0n/zkar";
+    license = licenses.asl20;
+    maintainers = with maintainers; [ fab ];
+  };
+}