biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / security / oauth2c / default.nix
blobdb7b3c00729b95fe95c04352e9c4b582dfeb7f9d
1 { buildGoModule
2 , fetchFromGitHub
3 , lib
4 }:
6 buildGoModule rec {
7   pname = "oauth2c";
8   version = "1.16.0";
10   src = fetchFromGitHub {
11     owner = "cloudentity";
12     repo = pname;
13     rev = "v${version}";
14     hash = "sha256-spD6BEyDwY2Nrk/XOWA+XJA1l7ixN4j6N5m9e8DLg88=";
15   };
17   vendorHash = "sha256-PdLh/J0HUvr1JjW/ew5PQe9TJNykI4tJhlRoVjRT/hg=";
19   doCheck = false; # tests want to talk to oauth2c.us.authz.cloudentity.io
21   meta = with lib; {
22     homepage = "https://github.com/cloudentity/oauth2c";
23     description = "User-friendly OAuth2 CLI";
24     mainProgram = "oauth2c";
25     longDescription = ''
26       oauth2c is a command-line tool for interacting with OAuth 2.0
27       authorization servers. Its goal is to make it easy to fetch access tokens
28       using any grant type or client authentication method. It is compliant with
29       almost all basic and advanced OAuth 2.0, OIDC, OIDF FAPI and JWT profiles.
30     '';
31     license = licenses.asl20;
32     maintainers = [ maintainers.flokli ];
33     platforms = platforms.darwin ++ platforms.linux;
34   };