Stitch any CI into Tangled
151
fork

Configure Feed

Select the types of activity you want to include in your feed.

nix: update hash

authored by

Mitchell Hashimoto and committed by
Tangled
d6fcf40a e2ac696c

+9 -1
+9 -1
flake.nix
··· 29 29 # vendorHash pins the Go module download FOD. Update this whenever 30 30 # go.mod / go.sum changes by replacing it with lib.fakeHash and 31 31 # rebuilding to surface the new hash. 32 - vendorHash = "sha256-BJTnyr5NIw2HZ+7jgnSO1kkEt507BQfLrYht6TKWypg="; 32 + vendorHash = "sha256-nTnfbKKswY1phPsRCTh/MCe4LdOeQfAJBqwRg3VK64M="; 33 33 34 34 # The repo ships a stale `tack` binary at the root that gets caught 35 35 # by `go test ./...`-style discovery; ignore it during the build. 36 36 subPackages = ["."]; 37 + 38 + # Fetch modules via the Go module proxy instead of synthesizing a 39 + # vendor/ directory. We pull in deps (e.g. tangled.org/core -> 40 + # go-redis/cache) whose test files require github.com/onsi/gomega; 41 + # `go mod vendor` then refuses to build because gomega is in go.mod 42 + # but not marked explicit in vendor/modules.txt. Proxy mode sidesteps 43 + # the vendor consistency check entirely. 44 + proxyVendor = true; 37 45 38 46 # mattn/go-sqlite3 needs cgo + a C compiler. 39 47 env.CGO_ENABLED = "1";