21 lines
459 B
Nix
21 lines
459 B
Nix
{
|
|
buildGoModule,
|
|
lib,
|
|
gitignoreSource,
|
|
...
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "anthropic-proxy";
|
|
version = "0.0.5";
|
|
|
|
src = gitignoreSource ./.;
|
|
|
|
vendorHash = "sha256-yXINNC+NEw+HbOQ5aBgSE5dYTWp+zEZ230rzXfwOoDY=";
|
|
|
|
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";
|
|
};
|
|
}
|