mirror of
https://github.com/NotAShelf/catApi.git
synced 2024-11-01 15:01:13 +00:00
12 lines
141 B
Nix
12 lines
141 B
Nix
{buildGoModule}:
|
|
buildGoModule {
|
|
pname = "sample-go";
|
|
version = "0.0.1";
|
|
|
|
src = ./.;
|
|
|
|
vendorHash = null;
|
|
|
|
ldflags = ["-s" "-w"];
|
|
}
|