depot/pkgs/by-name/he/hello-go/package.nix
Luke Granger-Brown 57725ef3ec Squashed 'third_party/nixpkgs/' content from commit 76612b17c0ce
git-subtree-dir: third_party/nixpkgs
git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
2024-11-10 23:59:47 +00:00

44 lines
1 KiB
Nix

{
lib,
buildGoModule,
}:
buildGoModule {
name = "hello-go";
src = ./src;
vendorHash = null;
CGO_ENABLED = 0;
# go installs binary into $out/bin/$GOOS_$GOARCH/hello-go in cross compilation
postInstall = ''
[[ -f "$out/bin/hello-go" ]] || ln -s ./''${GOOS}_''${GOARCH}/hello-go $out/bin/hello-go
'';
meta = {
description = "Simple program printing hello world in Go";
longDescription = ''
hello-go is a simple program printing "Hello, world!" written in Go,
aiming at testing programs that involves analyzing executables or
emulating foreign architectures, without pulling in a heavy cross
toolchain.
Specify target platform by setting GOOS and GOARCH:
```nix
hello-go.overrideAttrs {
GOOS = "linux";
GOARCH = "arm64";
}
```
See https://pkg.go.dev/internal/platform#pkg-variables for a list
of available platforms.
'';
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ aleksana ];
mainProgram = "hello-go";
};
}