mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-27 13:57:10 +03:00
tinc: A VPN daemon with full mesh routing.
This commit is contained in:
parent
52fb5d86a9
commit
2ba4f46752
30
pkgs/tools/networking/tinc/default.nix
Normal file
30
pkgs/tools/networking/tinc/default.nix
Normal file
@ -0,0 +1,30 @@
|
||||
{stdenv, fetchurl, lzo, openssl, zlib}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
version = "1.0.19";
|
||||
name = "tinc-${version}";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://www.tinc-vpn.org/packages/tinc-${version}.tar.gz";
|
||||
sha256 = "183nxj23d05vc3pxwbb692lr048wr81wnv0avzlkdm4r6c3bp7jh";
|
||||
};
|
||||
|
||||
buildInputs = [ lzo openssl zlib ];
|
||||
|
||||
configureFlags = ''
|
||||
--localstatedir=/var
|
||||
--sysconfdir=/etc
|
||||
'';
|
||||
|
||||
meta = {
|
||||
description = "VPN daemon with full mesh routing";
|
||||
longDescription = ''
|
||||
tinc is a Virtual Private Network (VPN) daemon that uses tunnelling and
|
||||
encryption to create a secure private network between hosts on the
|
||||
Internet. It features full mesh routing, as well as encryption,
|
||||
authentication, compression and ethernet bridging.
|
||||
'';
|
||||
homepage="http://www.tinc-vpn.org/";
|
||||
license = "gpl2Plus";
|
||||
};
|
||||
}
|
@ -1587,6 +1587,8 @@ let
|
||||
guile = guile_1_8;
|
||||
};
|
||||
|
||||
tinc = callPackage ../tools/networking/tinc { };
|
||||
|
||||
tmux = callPackage ../tools/misc/tmux { };
|
||||
|
||||
tor = callPackage ../tools/security/tor { };
|
||||
|
Loading…
Reference in New Issue
Block a user