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
This commit is contained in:
parent
b53d5fd054
commit
d5d16930f3
1 changed files with 5 additions and 3 deletions
|
@ -2,16 +2,16 @@
|
||||||
|
|
||||||
buildGoModule rec {
|
buildGoModule rec {
|
||||||
pname = "cni-plugins";
|
pname = "cni-plugins";
|
||||||
version = "1.2.0";
|
version = "1.3.0";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "containernetworking";
|
owner = "containernetworking";
|
||||||
repo = "plugins";
|
repo = "plugins";
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "sha256-p6gvXn8v7KZMiCPj2EQlk/2au1nZ6EJlLxcMZHzlEp8=";
|
hash = "sha256-cbmG9wK3yd79jCiNAKcSSx0COyh6CxR1bgIiCO3i++g=";
|
||||||
};
|
};
|
||||||
|
|
||||||
vendorSha256 = null;
|
vendorHash = null;
|
||||||
|
|
||||||
doCheck = false;
|
doCheck = false;
|
||||||
|
|
||||||
|
@ -30,6 +30,7 @@ buildGoModule rec {
|
||||||
"plugins/main/loopback"
|
"plugins/main/loopback"
|
||||||
"plugins/main/macvlan"
|
"plugins/main/macvlan"
|
||||||
"plugins/main/ptp"
|
"plugins/main/ptp"
|
||||||
|
"plugins/main/tap"
|
||||||
"plugins/main/vlan"
|
"plugins/main/vlan"
|
||||||
"plugins/meta/bandwidth"
|
"plugins/meta/bandwidth"
|
||||||
"plugins/meta/firewall"
|
"plugins/meta/firewall"
|
||||||
|
@ -42,6 +43,7 @@ buildGoModule rec {
|
||||||
passthru.tests = { inherit (nixosTests) cri-o; };
|
passthru.tests = { inherit (nixosTests) cri-o; };
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
changelog = "https://github.com/containernetworking/plugins/releases/tag/${src.rev}";
|
||||||
description = "Some standard networking plugins, maintained by the CNI team";
|
description = "Some standard networking plugins, maintained by the CNI team";
|
||||||
homepage = "https://www.cni.dev/plugins/";
|
homepage = "https://www.cni.dev/plugins/";
|
||||||
license = licenses.asl20;
|
license = licenses.asl20;
|
||||||
|
|
Loading…
Reference in a new issue