jwt-hack: init at 1.1.2
This commit is contained in:
parent
c30e557de4
commit
d508503f4d
2 changed files with 27 additions and 0 deletions
25
pkgs/tools/security/jwt-hack/default.nix
Normal file
25
pkgs/tools/security/jwt-hack/default.nix
Normal 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 ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -3850,6 +3850,8 @@ with pkgs;
|
||||||
inherit (darwin.apple_sdk.frameworks) Security;
|
inherit (darwin.apple_sdk.frameworks) Security;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
jwt-hack = callPackage ../tools/security/jwt-hack { } ;
|
||||||
|
|
||||||
kapacitor = callPackage ../servers/monitoring/kapacitor { };
|
kapacitor = callPackage ../servers/monitoring/kapacitor { };
|
||||||
|
|
||||||
kaldi = callPackage ../tools/audio/kaldi { };
|
kaldi = callPackage ../tools/audio/kaldi { };
|
||||||
|
|
Loading…
Reference in a new issue