netdata-go-plugins 0.56.3 -> 0.56.4 https://github.com/netdata/go.d.plugin/releases attrpath: netdata-go-plugins Checking auto update branch... No auto update branch exists Old version 0.56.3" not present in master derivation file with contents: { lib, fetchFromGitHub, buildGo121Module, nixosTests }: buildGo121Module rec { pname = "netdata-go-plugins"; version = "0.56.4"; src = fetchFromGitHub { owner = "netdata"; repo = "go.d.plugin"; rev = "v${version}"; hash = "sha256-7dR1TL2Ycb+7yHoFklrKdXXxIG4Tx+fAG5ScAAtbVRw="; }; vendorHash = "sha256-Faa+7tT3sPxlT6eQEmFotOJnt9b49ffDPEHt5V7tQa0="; doCheck = false; ldflags = [ "-s" "-w" "-X main.version=${version}" ]; postInstall = '' mkdir -p $out/lib/netdata/conf.d cp -r config/* $out/lib/netdata/conf.d ''; passthru.tests = { inherit (nixosTests) netdata; }; meta = with lib; { description = "Netdata orchestrator for data collection modules written in go"; homepage = "https://github.com/netdata/go.d.plugin"; changelog = "https://github.com/netdata/go.d.plugin/releases/tag/v${version}"; license = licenses.gpl3Only; maintainers = [ maintainers.raitobezarius ]; }; }