Files
anthropic-proxy/package.nix
T
2026-04-14 10:31:56 +02:00

21 lines
432 B
Nix

{
buildGoModule,
lib,
pkgs,
...
}:
buildGoModule rec {
pname = "anthropic-proxy";
version = "0.0.4";
src = ./.;
vendorHash = "sha256-8pq4GYFjOfYcYLcZSuXMWn77RUxVGP18AcyzIJGbKf4=";
meta = with lib; {
description = "Reverse proxy that lets OpenCode (and similar tools) use a Claude subscription instead of an API key.";
homepage = "https://gitea.susano-homelab.duckdns.org/fujin/anthropic-proxy";
};
}