Merge pull request #110171 from r-ryantm/auto-update/openvswitch

openvswitch: 2.14.0 -> 2.14.1
This commit is contained in:
Martin Weinelt 2021-02-02 14:53:21 +01:00 committed by GitHub
commit 4499ac8c75
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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