jwt-hack: init at 1.1.2

This commit is contained in:
Fabian Affolter 2022-06-15 17:10:59 +02:00
parent c30e557de4
commit d508503f4d
2 changed files with 27 additions and 0 deletions

View file

@ -0,0 +1,25 @@
{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "jwt-hack";
version = "1.1.2";
src = fetchFromGitHub {
owner = "hahwul";
repo = pname;
rev = "v${version}";
hash = "sha256-K0ZtEi0zAKRlIGvorrXmtmkcMvyLIXWPnVMQANZbClk=";
};
vendorSha256 = "sha256-VYh3oRy8bmtXf6AnLNi/M2kA6t+crW3AXBiGovpdt8U=";
meta = with lib; {
description = "Tool for attacking JWT";
homepage = "https://github.com/hahwul/jwt-hack";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}

View file

@ -3850,6 +3850,8 @@ with pkgs;
inherit (darwin.apple_sdk.frameworks) Security;
};
jwt-hack = callPackage ../tools/security/jwt-hack { } ;
kapacitor = callPackage ../servers/monitoring/kapacitor { };
kaldi = callPackage ../tools/audio/kaldi { };