Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
34 lines
825 B
Nix
34 lines
825 B
Nix
{
|
|
lib,
|
|
buildGoModule,
|
|
fetchFromGitHub,
|
|
}:
|
|
|
|
buildGoModule (finalAttrs: {
|
|
pname = "jwx";
|
|
version = "3.0.11";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "lestrrat-go";
|
|
repo = "jwx";
|
|
tag = "v${finalAttrs.version}";
|
|
hash = "sha256-TGB6dMybvMH/mXlNwnj63kOrj56mbEFTQSVfphnQJfY=";
|
|
};
|
|
|
|
vendorHash = "sha256-7lMvSwLi588UBI31YDi/VqyAqwUjWUwjOZbxE3fZQWU=";
|
|
|
|
sourceRoot = "${finalAttrs.src.name}/cmd/jwx";
|
|
|
|
meta = {
|
|
description = "Implementation of various JWx (Javascript Object Signing and Encryption/JOSE) technologies";
|
|
mainProgram = "jwx";
|
|
homepage = "https://github.com/lestrrat-go/jwx";
|
|
changelog = "https://github.com/lestrrat-go/jwx/blob/v${finalAttrs.version}/Changes";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [
|
|
arianvp
|
|
flokli
|
|
];
|
|
};
|
|
})
|