Unverified Commit 962a6862 authored by Yt's avatar Yt Committed by GitHub
Browse files

erigon, nodeinfo: fix `tags` for `buildGoModule` (#360030)

parents 4278c679 3afd2636
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 { };

+1 −1
Original line number Diff line number Diff line
@@ -17,7 +17,7 @@ buildGoModule rec {
  };

  modRoot = "./cli";
  tags = "extension";
  tags = [ "extension" ];
  ldflags = [
    "-s"
    "-w"