Commit 4b39e819 authored by Yueh-Shun Li's avatar Yueh-Shun Li
Browse files

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.
parent 522d5d85
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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 { };