python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / security / jwx / default.nix
blob0b8447e6e48854542f42a03ac7c4a5f0734c2d61
1 { lib
2 , buildGoModule
3 , fetchFromGitHub
4 }:
6 buildGoModule rec {
7   pname = "jwx";
8   version = "2.0.6";
10   src = fetchFromGitHub {
11     owner = "lestrrat-go";
12     repo = pname;
13     rev = "v${version}";
14     hash = "sha256-7X+UeguaWk7+IQ2/PgoFZR7OKpOTzgT/mo8k4eSl53A=";
15   };
17   vendorSha256 = "sha256-XZk/cwbfg05RkUFMs+AHTfEZiEvqYYoPoSVZVFM967g=";
19   sourceRoot = "source/cmd/jwx";
21   meta = with lib; {
22     description = " Implementation of various JWx (Javascript Object Signing and Encryption/JOSE) technologies";
23     homepage = "https://github.com/lestrrat-go/jwx";
24     license = licenses.mit;
25     maintainers = with maintainers; [ arianvp flokli ];
26   };