avalanchego 1.9.9 -> 1.9.11 https://github.com/ava-labs/avalanchego/releases attrpath: avalanchego Checking auto update branch... No auto update branch exists Old version 1.9.9" not present in master derivation file with contents: { IOKit , buildGoModule , fetchFromGitHub , fetchpatch , lib , stdenv }: buildGoModule rec { pname = "avalanchego"; version = "1.9.10"; src = fetchFromGitHub { owner = "ava-labs"; repo = pname; rev = "v${version}"; hash = "sha256-lzobtncxL/7Lf/+kVzIdyP0dTzerMJRAoT7OBFdeEgc="; }; vendorHash = "sha256-IxPJBpOSqcramegQ+M/U9p6ls6dStOi0OUdddDj11d0="; # go mod vendor has a bug, see: https://github.com/golang/go/issues/57529 proxyVendor = true; buildInputs = lib.optionals stdenv.isDarwin [ IOKit ]; subPackages = [ "main" ]; ldflags = [ "-s" "-w" "-X github.com/ava-labs/avalanchego/version.GitCommit=${version}" ]; postInstall = '' mv $out/bin/{main,${pname}} ''; meta = with lib; { description = "Go implementation of an Avalanche node"; homepage = "https://github.com/ava-labs/avalanchego"; changelog = "https://github.com/ava-labs/avalanchego/releases/tag/v${version}"; license = licenses.bsd3; maintainers = with maintainers; [ urandom ]; }; }