summary refs log tree commit diff
diff options
context:
space:
mode:
authorBen Wolsieffer <benwolsieffer@gmail.com>2022-01-08 12:56:01 -0500
committerBen Wolsieffer <benwolsieffer@gmail.com>2022-01-08 13:01:30 -0500
commit75741425ce52a783a65dbbf9633bcb9451ec5c46 (patch)
tree79764df1020d69859598f8212658aae75a22f25b
parent3858bd28178d4571de0037eb3f29528770ecde19 (diff)
downloadnixpkgs-75741425ce52a783a65dbbf9633bcb9451ec5c46.tar
nixpkgs-75741425ce52a783a65dbbf9633bcb9451ec5c46.tar.gz
nixpkgs-75741425ce52a783a65dbbf9633bcb9451ec5c46.tar.bz2
nixpkgs-75741425ce52a783a65dbbf9633bcb9451ec5c46.tar.lz
nixpkgs-75741425ce52a783a65dbbf9633bcb9451ec5c46.tar.xz
nixpkgs-75741425ce52a783a65dbbf9633bcb9451ec5c46.tar.zst
nixpkgs-75741425ce52a783a65dbbf9633bcb9451ec5c46.zip
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.
-rw-r--r--pkgs/tools/networking/openvpn/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/tools/networking/openvpn/default.nix b/pkgs/tools/networking/openvpn/default.nix
index 46375b60fe4..e2805f0ccf0 100644
--- a/pkgs/tools/networking/openvpn/default.nix
+++ b/pkgs/tools/networking/openvpn/default.nix
@@ -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=";
   };
 }