nixpkgs/pkgs/tools/security/jwx/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 lines
660 B
Nix
Raw Normal View History

2022-08-26 19:19:15 +01:00
{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "jwx";
2023-12-16 01:58:09 +00:00
version = "2.0.18";
2022-08-26 19:19:15 +01:00
src = fetchFromGitHub {
owner = "lestrrat-go";
repo = pname;
rev = "v${version}";
2023-12-16 01:58:09 +00:00
hash = "sha256-HQJu22bMgL4UbJx0+JLgGDYnyT9lO2De04tZibAcVdM=";
2022-08-26 19:19:15 +01:00
};
2023-08-28 03:34:38 +01:00
vendorHash = "sha256-o3EHPIXGLz/io0d8jhl9cxzctP3CeOjEDMQl1SY9lXg=";
2022-08-26 19:19:15 +01:00
sourceRoot = "${src.name}/cmd/jwx";
2022-08-26 19:19:15 +01:00
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 ];
};
}