2022-11-11T20:11:05 cadvisor 0.45.0 -> 0.46.0 https://github.com/google/cadvisor/releases 2022-11-11T20:11:08 attrpath: cadvisor 2022-11-11T20:11:08 Checking auto update branch... 2022-11-11T20:11:08 No auto update branch exists 2022-11-11T20:11:08 Old version 0.45.0" not present in master derivation file with contents: { lib, buildGoModule, fetchFromGitHub }: buildGoModule rec { pname = "cadvisor"; version = "0.46.0"; src = fetchFromGitHub { owner = "google"; repo = "cadvisor"; rev = "v${version}"; sha256 = "sha256-ciGj8SK7OgK3x8Njih4aIQ0vvNV9s5/w2i+DF/vw1O8="; }; modRoot = "./cmd"; vendorSha256 = "sha256-dg+osxsxdJ8Tg++wdd4L6FMjiPLLFQj0NXb2aSC7vQg="; ldflags = [ "-s" "-w" "-X github.com/google/cadvisor/version.Version=${version}" ]; postInstall = '' mv $out/bin/{cmd,cadvisor} rm $out/bin/example ''; preCheck = '' rm internal/container/mesos/handler_test.go ''; meta = with lib; { description = "Analyzes resource usage and performance characteristics of running docker containers"; homepage = "https://github.com/google/cadvisor"; license = licenses.asl20; maintainers = with maintainers; [ offline ]; platforms = platforms.linux; }; }