batmon/nix/package.nix

12 lines
141 B
Nix
Raw Normal View History

2024-01-11 19:51:07 +00:00
{buildGoModule}:
buildGoModule {
pname = "sample-go";
version = "0.0.1";
src = ./.;
vendorHash = null;
ldflags = ["-s" "-w"];
}