mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-17 01:24:47 +00:00
jwx: init at 2.0.6
This commit is contained in:
parent
b30e2234ac
commit
f9200712c5
27
pkgs/tools/security/jwx/default.nix
Normal file
27
pkgs/tools/security/jwx/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user