hello-go: fix longDescription (GOOS and GOARCH specification)

This reverts commit e53afdda6e01c4886d58e86c2f84bcccacf4a744.

+6 -4
+6 -4
pkgs/by-name/he/hello-go/package.nix
··· 28 Specify target platform by setting GOOS and GOARCH: 29 30 ```nix 31 - hello-go.overrideAttrs { 32 - GOOS = "linux"; 33 - GOARCH = "arm64"; 34 - } 35 ``` 36 37 See https://pkg.go.dev/internal/platform#pkg-variables for a list
··· 28 Specify target platform by setting GOOS and GOARCH: 29 30 ```nix 31 + hello-go.overrideAttrs (previousAttrs: { 32 + env = previousAttrs.env or { } // { 33 + GOOS = "linux"; 34 + GOARCH = "arm64"; 35 + }; 36 + }) 37 ``` 38 39 See https://pkg.go.dev/internal/platform#pkg-variables for a list