lol

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

zowoq d5d16930 b53d5fd0

+5 -3
+5 -3
pkgs/applications/networking/cluster/cni/plugins.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "cni-plugins"; 5 - version = "1.2.0"; 5 + version = "1.3.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "containernetworking"; 9 9 repo = "plugins"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-p6gvXn8v7KZMiCPj2EQlk/2au1nZ6EJlLxcMZHzlEp8="; 11 + hash = "sha256-cbmG9wK3yd79jCiNAKcSSx0COyh6CxR1bgIiCO3i++g="; 12 12 }; 13 13 14 - vendorSha256 = null; 14 + vendorHash = null; 15 15 16 16 doCheck = false; 17 17 ··· 30 30 "plugins/main/loopback" 31 31 "plugins/main/macvlan" 32 32 "plugins/main/ptp" 33 + "plugins/main/tap" 33 34 "plugins/main/vlan" 34 35 "plugins/meta/bandwidth" 35 36 "plugins/meta/firewall" ··· 42 43 passthru.tests = { inherit (nixosTests) cri-o; }; 43 44 44 45 meta = with lib; { 46 + changelog = "https://github.com/containernetworking/plugins/releases/tag/${src.rev}"; 45 47 description = "Some standard networking plugins, maintained by the CNI team"; 46 48 homepage = "https://www.cni.dev/plugins/"; 47 49 license = licenses.asl20;