From d5d16930f3010c1ceeb85270c62cd3ccb00542b8 Mon Sep 17 00:00:00 2001 From: zowoq <59103226+zowoq@users.noreply.github.com> Date: Sat, 13 May 2023 21:37:20 +1000 Subject: [PATCH] cni-plugins: 1.2.0 -> 1.3.0 Diff: https://github.com/containernetworking/plugins/compare/v1.2.0...v1.3.0 Changelog: https://github.com/containernetworking/plugins/releases/tag/v1.3.0 --- pkgs/applications/networking/cluster/cni/plugins.nix | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/networking/cluster/cni/plugins.nix b/pkgs/applications/networking/cluster/cni/plugins.nix index b917c6a62249..ce6aece37803 100644 --- a/pkgs/applications/networking/cluster/cni/plugins.nix +++ b/pkgs/applications/networking/cluster/cni/plugins.nix @@ -2,16 +2,16 @@ buildGoModule rec { pname = "cni-plugins"; - version = "1.2.0"; + version = "1.3.0"; src = fetchFromGitHub { owner = "containernetworking"; repo = "plugins"; rev = "v${version}"; - sha256 = "sha256-p6gvXn8v7KZMiCPj2EQlk/2au1nZ6EJlLxcMZHzlEp8="; + hash = "sha256-cbmG9wK3yd79jCiNAKcSSx0COyh6CxR1bgIiCO3i++g="; }; - vendorSha256 = null; + vendorHash = null; doCheck = false; @@ -30,6 +30,7 @@ buildGoModule rec { "plugins/main/loopback" "plugins/main/macvlan" "plugins/main/ptp" + "plugins/main/tap" "plugins/main/vlan" "plugins/meta/bandwidth" "plugins/meta/firewall" @@ -42,6 +43,7 @@ buildGoModule rec { passthru.tests = { inherit (nixosTests) cri-o; }; meta = with lib; { + changelog = "https://github.com/containernetworking/plugins/releases/tag/${src.rev}"; description = "Some standard networking plugins, maintained by the CNI team"; homepage = "https://www.cni.dev/plugins/"; license = licenses.asl20;