Skip to content

Commit 5521b54

Browse files
committedJun 21, 2017
1 parent f1ea37c commit 5521b54

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed
 

‎pkgs/tools/networking/openvpn/default.nix

+4-3
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,15 @@ with stdenv.lib;
88

99
stdenv.mkDerivation rec {
1010
name = "openvpn-${version}";
11-
version = "2.4.2";
11+
version = "2.4.3";
1212

1313
src = fetchurl {
1414
url = "http://swupdate.openvpn.net/community/releases/${name}.tar.xz";
15-
sha256 = "1ydzy5i7yaifz0v1ivrckksvm0nkkx5sia3g5y5b1xkx9cw4yp6z";
15+
sha256 = "0w85915nvdws1n1zsn8zcy9wg23jsx782nvrx1a3x4mqlmkn3a3s";
1616
};
1717

18-
buildInputs = [ lzo openssl pkgconfig ]
18+
nativeBuildInputs = [ pkgconfig ];
19+
buildInputs = [ lzo openssl ]
1920
++ optionals stdenv.isLinux [ pam systemd iproute ]
2021
++ optional pkcs11Support pkcs11helper;
2122

0 commit comments

Comments
 (0)
Please sign in to comment.