{ lib, buildGoModule, fetchFromGitHub, nix-update-script, }: buildGoModule rec { pname = "eigenlayer"; version = "0.10.4"; src = fetchFromGitHub { owner = "Layr-Labs"; repo = "eigenlayer-cli"; rev = "v${version}"; hash = "sha256-veq1x5fV4guj4ElpwxGdXPLrORdLGGrPT5Q8a8IR8LY="; }; vendorHash = "sha256-Pf0dEtHhbNCwOMgbeGRwZ5x2JS/U8PEI7/AnVwsXFzk="; ldflags = ["-s" "-w"]; subPackages = ["cmd/eigenlayer"]; passthru.updateScript = nix-update-script {}; meta = with lib; { homepage = "https://www.eigenlayer.xyz/"; changelog = "https://github.com/Layr-Labs/eigenlayer-cli/releases/tag/${src.rev}"; description = "Utility that manages core operator functionalities like local keys, operator registration and updates"; mainProgram = "eigenlayer"; license = licenses.bsl11; maintainers = with maintainers; [selfuryon]; }; }