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
654 B
Nix
Raw Normal View History

2022-08-26 18:19:15 +00:00
{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "jwx";
2023-03-25 09:47:33 +00:00
version = "2.0.9";
2022-08-26 18:19:15 +00:00
src = fetchFromGitHub {
owner = "lestrrat-go";
repo = pname;
rev = "v${version}";
2023-03-25 09:47:33 +00:00
hash = "sha256-0Ha16moHpPt7IwSmSLSf3ExKlp2TDkssPppNIPHrsJw=";
2022-08-26 18:19:15 +00:00
};
2023-03-25 09:47:33 +00:00
vendorHash = "sha256-RyAQh1uXw3bEZ6vuh8+mEf8T4l3ZIFAaFJ6dGMoANys=";
2022-08-26 18:19:15 +00:00
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 ];
};
}