openvpn: 2.5.2 -> 2.5.5

Also, increase the minimum version that requires iproute2 (for documentation
purposes only, since we are upgrading to a later version). Until 2.5.4, iproute2
was required to set the MAC address on the VPN interface.
This commit is contained in:
Ben Wolsieffer 2022-01-08 12:56:01 -05:00
parent 3858bd2817
commit 75741425ce

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=";
};
}