+2
-2
pkgs/os-specific/linux/openvswitch/default.nix
+2
-2
pkgs/os-specific/linux/openvswitch/default.nix
···
8
8
_kernel = kernel;
9
9
pythonEnv = python3.withPackages (ps: with ps; [ six ]);
10
10
in stdenv.mkDerivation rec {
11
-
version = "2.17.0";
11
+
version = "2.17.5";
12
12
pname = "openvswitch";
13
13
14
14
src = fetchurl {
15
15
url = "https://www.openvswitch.org/releases/${pname}-${version}.tar.gz";
16
-
sha256 = "sha256-4Dv6t8qC2Bp9OjbeTzkKO1IQ4/OWV2cfkih3zU6m3HM=";
16
+
sha256 = "sha256-Woye+zUikjdGWIp8pRDBC7CsUrnInfJ23byGcxFtwQY=";
17
17
};
18
18
19
19
kernel = optional (_kernel != null) _kernel.dev;
+3
pkgs/os-specific/linux/openvswitch/lts.nix
+3
pkgs/os-specific/linux/openvswitch/lts.nix
···
77
77
homepage = "https://www.openvswitch.org/";
78
78
license = licenses.asl20;
79
79
maintainers = with maintainers; [ netixx kmcopper ];
80
+
knownVulnerabilities = [
81
+
"LLDP undervflow while parsing malformed Auto Attach TLV, see https://www.openwall.com/lists/oss-security/2022/12/20/2."
82
+
];
80
83
};
81
84
}