2013-01-17 22:52:15 -08:00
|
|
|
{stdenv, fetchurl, lzo, openssl, zlib}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-09-06 04:06:44 -07:00
|
|
|
version = "1.0.36";
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "tinc";
|
2013-01-17 22:52:15 -08:00
|
|
|
|
|
|
|
src = fetchurl {
|
2018-06-28 11:43:35 -07:00
|
|
|
url = "https://www.tinc-vpn.org/packages/tinc-${version}.tar.gz";
|
2019-09-06 04:06:44 -07:00
|
|
|
sha256 = "021i2sl2mjscbm8g59d7vs74iw3gf0m48wg7w3zhwj6czarkpxs0";
|
2013-01-17 22:52:15 -08:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ lzo openssl zlib ];
|
|
|
|
|
2015-07-16 19:25:30 -07:00
|
|
|
configureFlags = [
|
|
|
|
"--localstatedir=/var"
|
|
|
|
"--sysconfdir=/etc"
|
|
|
|
];
|
2013-01-17 22:52:15 -08:00
|
|
|
|
2017-01-30 03:38:02 -08:00
|
|
|
meta = {
|
2013-01-17 22:52:15 -08:00
|
|
|
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-19 13:33:32 -08:00
|
|
|
license = stdenv.lib.licenses.gpl2Plus;
|
2016-08-02 10:50:55 -07:00
|
|
|
platforms = stdenv.lib.platforms.unix;
|
2013-01-17 22:52:15 -08:00
|
|
|
};
|
|
|
|
}
|