will install `dnscrypt-proxy` to `${PREFIX}/sbin`.
====
+[[go-ex3]]
+.Overriding go.mod in Modules Mode
+[example]
+====
+Modules-aware mode (that is, `USES=go:modules`) determines which packages to download by inspecting `go.mod` immediately after fetching it.
+Patching occurs after sources have been fetched and extracted, so a regular patch in `files/` would apply to `go.mod` (and/or `go.sum`) too late.
+
+While patching the upstream `go.mod` to alter dependencies is impossible, you can still *override* it by adding another `go.mod` as a second distfile.