about summary refs log tree commit diff
path: root/pkgs/tools/security/oauth2c
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/tools/security/oauth2c')
-rw-r--r--pkgs/tools/security/oauth2c/default.nix35
1 files changed, 0 insertions, 35 deletions
diff --git a/pkgs/tools/security/oauth2c/default.nix b/pkgs/tools/security/oauth2c/default.nix
deleted file mode 100644
index 1289eb05f215..000000000000
--- a/pkgs/tools/security/oauth2c/default.nix
+++ /dev/null
@@ -1,35 +0,0 @@
-{ buildGoModule
-, fetchFromGitHub
-, lib
-}:
-
-buildGoModule rec {
-  pname = "oauth2c";
-  version = "1.14.0";
-
-  src = fetchFromGitHub {
-    owner = "cloudentity";
-    repo = pname;
-    rev = "v${version}";
-    hash = "sha256-sxaInCsW3MKOYV3TscJYGwzSncg5TUW9YVheuxoO1h4=";
-  };
-
-  vendorHash = "sha256-PdLh/J0HUvr1JjW/ew5PQe9TJNykI4tJhlRoVjRT/hg=";
-
-  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";
-    mainProgram = "oauth2c";
-    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;
-  };
-}