2022-11-04T07:23:16 gobgp 3.7.0 -> 3.8.0 https://github.com/osrg/gobgp/releases 2022-11-04T07:23:19 attrpath: gobgp 2022-11-04T07:23:19 Checking auto update branch... 2022-11-04T07:23:19 No auto update branch exists 2022-11-04T07:23:19 Old version 3.7.0" not present in master derivation file with contents: { buildGoModule, fetchFromGitHub, lib }: buildGoModule rec { pname = "gobgp"; version = "3.8.0"; src = fetchFromGitHub { owner = "osrg"; repo = "gobgp"; rev = "v${version}"; sha256 = "sha256-nZGDaoxGv5DrQY57v4by7SNlRWueKXGrndOKu+cZgDY="; }; vendorSha256 = "sha256-FxfER3THsA7NRuQKEdWQxgUN0SiNI00hGUMVD+3BaG4="; postConfigure = '' export CGO_ENABLED=0 ''; ldflags = [ "-s" "-w" "-extldflags '-static'" ]; subPackages = [ "cmd/gobgp" ]; meta = with lib; { description = "A CLI tool for GoBGP"; homepage = "https://osrg.github.io/gobgp/"; license = licenses.asl20; maintainers = with maintainers; [ higebu ]; }; }