Merge pull request #212800 from SuperSandro2000/go-forwarding-vendor

Closes https://github.com/NixOS/nixpkgs/issues/208036

authored by

Sandro and committed by
GitHub
99bf8a1f b40f84b2

+3
+3
pkgs/build-support/go/module.nix
··· 83 83 inherit (args) src; 84 84 inherit (go) GOOS GOARCH; 85 85 86 + prePatch = args.prePatch or ""; 86 87 patches = args.patches or []; 87 88 patchFlags = args.patchFlags or []; 89 + postPatch = args.postPatch or ""; 88 90 preBuild = args.preBuild or ""; 91 + postBuild = args.postBuild or ""; 89 92 sourceRoot = args.sourceRoot or ""; 90 93 91 94 GO111MODULE = "on";