mirror of
https://gitlab.com/TECHNOFAB/go-copilot-proxy.git
synced 2025-12-11 22:10:06 +01:00
chore: initial commit
This commit is contained in:
commit
595200836c
16 changed files with 1571 additions and 0 deletions
23
package.nix
Normal file
23
package.nix
Normal 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";
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue