headplane/nix/agent.nix
2025-08-20 14:07:08 -04:00

10 lines
266 B
Nix

{buildGoModule}:
buildGoModule {
pname = "hp_agent";
version = (builtins.fromJSON (builtins.readFile ../package.json)).version;
src = ../.;
vendorHash = "sha256-cPE8cnfTdzi6hAmSXujKmfd5ezivc3sQ6DKOZubCpYI=";
ldflags = ["-s" "-w"];
env.CGO_ENABLED = 0;
}