mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 15:27:20 +03:00
openvpn: Update to 2.3.1
This commit is contained in:
parent
412decd2a4
commit
6c03d641fa
@ -1,35 +1,41 @@
|
||||
{stdenv, fetchurl, iproute, lzo, openssl}:
|
||||
{ stdenv, fetchurl, iproute, lzo, openssl, pam }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "openvpn-2.2.2";
|
||||
name = "openvpn-2.3.1";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://swupdate.openvpn.net/community/releases/${name}.tar.gz";
|
||||
sha256 = "005cpvdvh8pvsn3bc96lrznlkcccbz5jqa62hipb58rf1qk8pjjl";
|
||||
sha256 = "0g7vf3f6z0h4kdqlqr8jd0gapi0ains6xcvlvfy8cicxnf2psbdx";
|
||||
};
|
||||
|
||||
buildInputs = [ iproute lzo openssl ];
|
||||
buildInputs = [ iproute lzo openssl pam ];
|
||||
|
||||
configureFlags = ''
|
||||
--enable-password-save
|
||||
--enable-iproute2
|
||||
--with-iproute-path=${iproute}/sbin/ip
|
||||
--enable-systemd
|
||||
IPROUTE=${iproute}/sbin/ip
|
||||
'';
|
||||
|
||||
preConfigure = ''
|
||||
substituteInPlace ./src/openvpn/console.c \
|
||||
--replace /bin/systemd-ask-password /run/current-system/sw/bin/systemd-ask-password
|
||||
'';
|
||||
|
||||
postInstall = ''
|
||||
mkdir -p $out/share/doc/openvpn/examples
|
||||
cp -r sample-config-files/ $out/share/doc/openvpn/examples
|
||||
cp -r sample-keys/ $out/share/doc/openvpn/examples
|
||||
cp -r easy-rsa/ $out/share/doc/openvpn/examples
|
||||
rm -r $out/share/doc/openvpn/examples/easy-rsa/Windows
|
||||
cp -r sample-scripts/ $out/share/doc/openvpn/examples
|
||||
cp -r sample/sample-config-files/ $out/share/doc/openvpn/examples
|
||||
cp -r sample/sample-keys/ $out/share/doc/openvpn/examples
|
||||
cp -r sample/sample-scripts/ $out/share/doc/openvpn/examples
|
||||
'';
|
||||
|
||||
meta = {
|
||||
description="OpenVPN is a robust and highly flexible tunneling application compatible with many OSes.";
|
||||
homepage="http://openvpn.net/";
|
||||
license = "GPLv2";
|
||||
maintainers = with stdenv.lib.maintainers; [viric];
|
||||
platforms = with stdenv.lib.platforms; linux;
|
||||
enableParallelBuilding = true;
|
||||
|
||||
meta = {
|
||||
description = "A robust and highly flexible tunneling application";
|
||||
homepage = http://openvpn.net/;
|
||||
license = "GPLv2";
|
||||
maintainers = [ stdenv.lib.maintainers.viric ];
|
||||
platforms = stdenv.lib.platforms.linux;
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user