504525a148
GitOrigin-RevId: bd645e8668ec6612439a9ee7e71f7eac4099d4f6
34 lines
1,022 B
Nix
34 lines
1,022 B
Nix
{ buildGoModule
|
|
, fetchFromGitHub
|
|
, lib
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "oauth2c";
|
|
version = "1.12.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "cloudentity";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
hash = "sha256-4ZCb8BXrKGXJ8d06fxAuFkGRxcK7PwuPFuCBc9EIXZY=";
|
|
};
|
|
|
|
vendorHash = "sha256-olDtsLoslxOsbAq60RnLp9MGZOt17/BPo9E9SgWOqoQ=";
|
|
|
|
doCheck = false; # tests want to talk to oauth2c.us.authz.cloudentity.io
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/cloudentity/oauth2c";
|
|
description = "User-friendly OAuth2 CLI";
|
|
longDescription = ''
|
|
oauth2c is a command-line tool for interacting with OAuth 2.0
|
|
authorization servers. Its goal is to make it easy to fetch access tokens
|
|
using any grant type or client authentication method. It is compliant with
|
|
almost all basic and advanced OAuth 2.0, OIDC, OIDF FAPI and JWT profiles.
|
|
'';
|
|
license = licenses.asl20;
|
|
maintainers = [ maintainers.flokli ];
|
|
platforms = platforms.darwin ++ platforms.linux;
|
|
};
|
|
}
|