erigon: fix tags

`tags` should be specified as a list of elements to form `-tags=e1,e2`,
not the `-tags=e1,e2` flag string itself.
This commit is contained in:
Yueh-Shun Li 2024-11-28 17:21:22 +08:00
parent 522d5d85db
commit 4b39e819bf

View File

@ -40,7 +40,7 @@ buildGoModule {
# Enabling silkworm also breaks the build as it requires dynamically linked libraries.
# If we need it in the future, we should consider packaging silkworm and silkworm-go
# as depenedencies explicitly.
tags = "-tags=nosqlite,noboltdb,nosilkworm";
tags = [ "nosqlite" "noboltdb" "nosilkworm" ];
passthru.updateScript = nix-update-script { };