mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 15:41:48 +00:00
adding openvpn
svn path=/nixpkgs/trunk/; revision=14901
This commit is contained in:
parent
613cc80e1d
commit
0311bb19c8
17
pkgs/tools/networking/openvpn/default.nix
Normal file
17
pkgs/tools/networking/openvpn/default.nix
Normal 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";
|
||||
};
|
||||
}
|
@ -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;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user