We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Learn more about funding links in repositories.
Report abuse
1 parent f1ea37c commit 5521b54Copy full SHA for 5521b54
pkgs/tools/networking/openvpn/default.nix
@@ -8,14 +8,15 @@ with stdenv.lib;
8
9
stdenv.mkDerivation rec {
10
name = "openvpn-${version}";
11
- version = "2.4.2";
+ version = "2.4.3";
12
13
src = fetchurl {
14
url = "http://swupdate.openvpn.net/community/releases/${name}.tar.xz";
15
- sha256 = "1ydzy5i7yaifz0v1ivrckksvm0nkkx5sia3g5y5b1xkx9cw4yp6z";
+ sha256 = "0w85915nvdws1n1zsn8zcy9wg23jsx782nvrx1a3x4mqlmkn3a3s";
16
};
17
18
- buildInputs = [ lzo openssl pkgconfig ]
+ nativeBuildInputs = [ pkgconfig ];
19
+ buildInputs = [ lzo openssl ]
20
++ optionals stdenv.isLinux [ pam systemd iproute ]
21
++ optional pkcs11Support pkcs11helper;
22
0 commit comments