Merge pull request #188482 from flokli/jwx

jwx: init at 2.0.6
This commit is contained in:
Florian Klink 2022-08-27 15:01:45 +02:00 committed by GitHub
commit 43a916aa9a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 29 additions and 0 deletions

View File

@ -0,0 +1,27 @@
{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "jwx";
version = "2.0.6";
src = fetchFromGitHub {
owner = "lestrrat-go";
repo = pname;
rev = "v${version}";
hash = "sha256-7X+UeguaWk7+IQ2/PgoFZR7OKpOTzgT/mo8k4eSl53A=";
};
vendorSha256 = "sha256-XZk/cwbfg05RkUFMs+AHTfEZiEvqYYoPoSVZVFM967g=";
sourceRoot = "source/cmd/jwx";
meta = with lib; {
description = " Implementation of various JWx (Javascript Object Signing and Encryption/JOSE) technologies";
homepage = "https://github.com/lestrrat-go/jwx";
license = licenses.mit;
maintainers = with maintainers; [ arianvp flokli ];
};
}

View File

@ -4130,6 +4130,8 @@ with pkgs;
jwt-hack = callPackage ../tools/security/jwt-hack { } ;
jwx = callPackage ../tools/security/jwx { } ;
kapacitor = callPackage ../servers/monitoring/kapacitor { };
kaldi = callPackage ../tools/audio/kaldi { };