cni-plugins: 0.8.7 -> 0.9.0

https://github.com/containernetworking/plugins/releases/tag/v0.9.0
This commit is contained in:
zowoq 2020-12-10 15:14:19 +10:00
parent b0541511d0
commit 820e450810

View File

@ -2,13 +2,13 @@
buildGoModule rec { buildGoModule rec {
pname = "cni-plugins"; pname = "cni-plugins";
version = "0.8.7"; version = "0.9.0";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "containernetworking"; owner = "containernetworking";
repo = "plugins"; repo = "plugins";
rev = "v${version}"; rev = "v${version}";
sha256 = "1sjk0cghldygx1jgx4bqv83qky7shk64n6xkkfxl92f12wyvsq9j"; sha256 = "1nkaspz96yglq1fr8a3xr39qmbs98pk7qpqav3cfd82qwbq7vs06";
}; };
vendorSha256 = null; vendorSha256 = null;
@ -36,13 +36,14 @@ buildGoModule rec {
"plugins/meta/portmap" "plugins/meta/portmap"
"plugins/meta/sbr" "plugins/meta/sbr"
"plugins/meta/tuning" "plugins/meta/tuning"
"plugins/meta/vrf"
]; ];
passthru.tests = { inherit (nixosTests) cri-o podman; }; passthru.tests = { inherit (nixosTests) cri-o podman; };
meta = with lib; { meta = with lib; {
description = "Some standard networking plugins, maintained by the CNI team"; description = "Some standard networking plugins, maintained by the CNI team";
homepage = "https://github.com/containernetworking/plugins"; homepage = "https://www.cni.dev/plugins/";
license = licenses.asl20; license = licenses.asl20;
platforms = platforms.linux; platforms = platforms.linux;
maintainers = with maintainers; [ cstrahan ] ++ teams.podman.members; maintainers = with maintainers; [ cstrahan ] ++ teams.podman.members;