flannel 0.22.3 -> 0.23.0 https://github.com/flannel-io/flannel/releases attrpath: flannel Checking auto update branch... No auto update branch exists Old version 0.22.3" not present in master derivation file with contents: { lib, buildGoModule, fetchFromGitHub, nixosTests }: buildGoModule rec { pname = "flannel"; version = "0.23.0"; rev = "v${version}"; vendorHash = "sha256-U4mFFxVVLHvgY2YQN1nEsFiTpfBpmhftLoVoGEzb2Fs="; src = fetchFromGitHub { inherit rev; owner = "flannel-io"; repo = "flannel"; sha256 = "sha256-8KUfmnDShhb8eFukU/dUo/PCrFlQDBh+gAV2rqqB7mE="; }; ldflags = [ "-X github.com/flannel-io/flannel/pkg/version.Version=${rev}" ]; # TestRouteCache/TestV6RouteCache fail with "Failed to create newns: operation not permitted" doCheck = false; passthru.tests = { inherit (nixosTests) flannel; }; meta = with lib; { description = "Network fabric for containers, designed for Kubernetes"; license = licenses.asl20; homepage = "https://github.com/flannel-io/flannel"; maintainers = with maintainers; [ johanot offline ]; platforms = with platforms; linux; }; }