Merge pull request #154028 from lopsided98/openvpn-iproute

openvpn: 2.5.2 -> 2.5.5
This commit is contained in:
Renaud 2022-01-16 10:48:41 +01:00 committed by GitHub
commit 6cc6f9925a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -24,7 +24,7 @@ let
generic = { version, sha256 }:
let
withIpRoute = stdenv.isLinux && (versionOlder version "2.5");
withIpRoute = stdenv.isLinux && (versionOlder version "2.5.4");
in
stdenv.mkDerivation
rec {
@ -83,7 +83,7 @@ in
};
openvpn = generic {
version = "2.5.2";
sha256 = "sha256-sSdDg2kB82Xvr4KrJJOWfhshwh60POmo2hACoXycHcg=";
version = "2.5.5";
sha256 = "sha256-EZvWn6AhCDj2zaonNpbcc476IA9FTb4R6237dd+2ADs=";
};
}