nixpkgs/pkgs/build-support/go
Sergei Trofimovich a1422a7f8f build-support/go: fix eval of vendorSha256 accesses
Before the change there was no way to poll for presence of
`vendorSha256` attribute:

    $ nix-instantiate --strict --eval --expr 'with import ./. {}; _3mux.vendorSha256 or "no hash"'
       error: attribute 'vendorSha256' missing
          292|     passthru = passthru // { inherit go goModules vendorHash; } // { inherit (args') vendorSha256; };
             |                                                                     ^

After the change the poll happens as expected:

    $ nix-instantiate --strict --eval --expr 'with import ./. {}; _3mux.vendorSha256 or "no hash"'
    "no hash"
2023-12-30 12:03:28 +10:00
..
module.nix build-support/go: fix eval of vendorSha256 accesses 2023-12-30 12:03:28 +10:00
package.nix buildGo{Module,Package}: set GOTOOLCHAIN to local 2023-08-02 01:08:27 +10:00