Skip to content

Commit

Permalink
erigon, nodeinfo: fix tags for buildGoModule (NixOS#360030)
Browse files Browse the repository at this point in the history
  • Loading branch information
happysalada authored Nov 30, 2024
2 parents 4278c67 + 3afd263 commit 962a686
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pkgs/by-name/er/erigon/package.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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 { };

Expand Down
2 changes: 1 addition & 1 deletion pkgs/by-name/no/nodeinfo/package.nix
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ buildGoModule rec {
};

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

0 comments on commit 962a686

Please sign in to comment.