2022-11-04T07:23:29 gobgpd 3.7.0 -> 3.8.0 https://github.com/osrg/gobgp/releases 2022-11-04T07:23:31 attrpath: gobgpd 2022-11-04T07:23:31 Checking auto update branch... 2022-11-04T07:23:31 No auto update branch exists 2022-11-04T07:23:32 Old version 3.7.0" not present in master derivation file with contents: { buildGoModule, fetchFromGitHub, lib }: buildGoModule rec { pname = "gobgpd"; 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/gobgpd" ]; meta = with lib; { description = "BGP implemented in Go"; homepage = "https://osrg.github.io/gobgp/"; changelog = "https://github.com/osrg/gobgp/releases/tag/v${version}"; license = licenses.asl20; maintainers = with maintainers; [ higebu ]; }; }