netdata-go-plugins 0.57.2 -> 0.58.0 https://repology.org/project/netdata-go-plugins/versions attrpath: netdata-go-plugins Checking auto update branch... No auto update branch exists Old version 0.57.2" not present in master derivation file with contents: { lib, fetchFromGitHub, buildGoModule, nixosTests }: buildGoModule rec { pname = "netdata-go-plugins"; version = "0.58.0"; src = fetchFromGitHub { owner = "netdata"; repo = "go.d.plugin"; rev = "v${version}"; hash = "sha256-XZBF0uNXTo5UcBuhMVznij+QGhHM06j5J2xflZf40kI="; }; vendorHash = "sha256-bdW6ZDMYVFGWD7KEDU2kaoccgwbOPl7ADnZ1npGBLAc="; 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 ]; }; }