mirror of
https://github.com/tale/headplane.git
synced 2026-07-26 15:58:14 +00:00
10 lines
266 B
Nix
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;
|
|
}
|