adding openvpn

svn path=/nixpkgs/trunk/; revision=14901
This commit is contained in:
Marc Weber 2009-04-06 13:07:18 +00:00
parent 613cc80e1d
commit 0311bb19c8
2 changed files with 21 additions and 0 deletions

View File

@ -0,0 +1,17 @@
args: with args;
stdenv.mkDerivation {
name = "OpenVPN-2.1_rc15";
src = fetchurl {
url = http://openvpn.net/release/openvpn-2.1_rc15.tar.gz;
sha256 = "198k5lbw0bnx67hgflzlzncmdnww0wa7fll0kkirmckav93y7kv6";
};
buildInputs = [ iproute lzo openssl];
meta = {
description="OpenVPN is a robust and highly flexible tunneling application compatible with many OSes.";
homepage="http://openvpn.net/";
license = "GPLv2";
};
}

View File

@ -1056,6 +1056,10 @@ let
pamSupport = getPkgConfig "openssh" "pam" true;
};
openvpn = import ../tools/networking/openvpn {
inherit fetchurl stdenv iproute lzo openssl;
};
p7zip = import ../tools/archivers/p7zip {
inherit fetchurl stdenv;
};