catApi/default.nix
2023-10-26 19:39:06 +03:00

12 lines
141 B
Nix

{buildGoModule}:
buildGoModule {
pname = "sample-go";
version = "0.0.1";
src = ./.;
vendorHash = null;
ldflags = ["-s" "-w"];
}