Signed-off-by: NotAShelf <raf@notashelf.dev> Change-Id: Iabcad180d133f01d3c98e3d5fc9630b26a6a6964
11 lines
140 B
Nix
11 lines
140 B
Nix
{buildGoModule}:
|
|
buildGoModule {
|
|
pname = "sample-go";
|
|
version = "0.0.1";
|
|
|
|
src = ../.;
|
|
|
|
vendorHash = "";
|
|
|
|
ldflags = ["-s" "-w"];
|
|
}
|