chore: initial commit

This commit is contained in:
technofab 2025-08-05 11:08:53 +02:00
commit 595200836c
No known key found for this signature in database
16 changed files with 1571 additions and 0 deletions

23
package.nix Normal file
View file

@ -0,0 +1,23 @@
{
lib,
buildGoModule,
...
}:
buildGoModule {
name = "go-copilot-proxy";
src =
# filter everything except for cmd/, internal/ and go.mod, go.sum
with lib.fileset;
toSource {
root = ./.;
fileset = unions [
./cmd
./internal
./go.mod
./go.sum
];
};
subPackages = ["cmd/go-copilot-proxy"];
vendorHash = "sha256-/+6NnofnE3IrtUbHJrgDE2VFK6Gj40rodtE/42LvPMk=";
meta.mainProgram = "go-copilot-proxy";
}