kube-router 1.5.1 -> 1.5.3 https://github.com/cloudnativelabs/kube-router/releases attrpath: kube-router Checking auto update branch... No auto update branch exists Old version 1.5.1" not present in master derivation file with contents: { lib, buildGoModule, fetchFromGitHub, testers, kube-router }: buildGoModule rec { pname = "kube-router"; version = "1.5.3"; src = fetchFromGitHub { owner = "cloudnativelabs"; repo = pname; rev = "v${version}"; sha256 = "sha256-aO72wvq31kue75IKfEByhKxUwSSGGmPLzHDBSvTChTM="; }; vendorSha256 = "sha256-+3uTIaXuiwbU0fUgn2th4RNDQ5gCDi3ntPMu92S+mXc="; CGO_ENABLED = 0; ldflags = [ "-s" "-w" "-X github.com/cloudnativelabs/kube-router/pkg/version.Version=${version}" "-X github.com/cloudnativelabs/kube-router/pkg/version.BuildDate=Nix" ]; passthru.tests.version = testers.testVersion { package = kube-router; }; meta = with lib; { homepage = "https://www.kube-router.io/"; description = "All-in-one router, firewall and service proxy for Kubernetes"; license = licenses.asl20; maintainers = with maintainers; [ colemickens johanot ]; platforms = platforms.linux; }; }