nixpkgs/pkgs/tools/networking/tinc/default.nix

32 lines
912 B
Nix
Raw Normal View History

{stdenv, fetchurl, lzo, openssl, zlib}:
stdenv.mkDerivation rec {
2016-05-13 00:54:58 +03:00
version = "1.0.28";
name = "tinc-${version}";
src = fetchurl {
url = "http://www.tinc-vpn.org/packages/tinc-${version}.tar.gz";
2016-05-13 00:54:58 +03:00
sha256 = "0i5kx3hza359nclyhb60kxlzqyx0phmg175350hww28g6scjcl0b";
};
buildInputs = [ lzo openssl zlib ];
2015-07-17 05:25:30 +03:00
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/";
2013-01-20 01:33:32 +04:00
license = stdenv.lib.licenses.gpl2Plus;
platforms = stdenv.lib.platforms.unix;
};
}