openvswitch: 2.16.2 -> 2.17.0

This commit is contained in:
R. Ryantm 2022-02-22 02:33:51 +00:00 committed by Jonathan Ringer
parent 3c962d11e4
commit 50705e9f0c

View file

@ -8,12 +8,12 @@ let
_kernel = kernel;
pythonEnv = python3.withPackages (ps: with ps; [ six ]);
in stdenv.mkDerivation rec {
version = "2.16.2";
version = "2.17.0";
pname = "openvswitch";
src = fetchurl {
url = "https://www.openvswitch.org/releases/${pname}-${version}.tar.gz";
sha256 = "sha256-A6xMMpmzjlbAtNTCejKclYsAOgjztUigo8qLmU8tSTQ=";
sha256 = "sha256-4Dv6t8qC2Bp9OjbeTzkKO1IQ4/OWV2cfkih3zU6m3HM=";
};
kernel = optional (_kernel != null) _kernel.dev;