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

32 lines
923 B
Nix
Raw Normal View History

{stdenv, fetchurl, lzo, openssl, zlib}:
stdenv.mkDerivation rec {
2017-01-30 12:38:02 +01:00
version = "1.0.31";
name = "tinc-${version}";
src = fetchurl {
url = "http://www.tinc-vpn.org/packages/tinc-${version}.tar.gz";
2017-01-30 12:38:02 +01:00
sha256 = "d3cbc82e6e07975a2ccc0b369d07e30fc3324e71e240dca8781ce9a4f629519b";
};
buildInputs = [ lzo openssl zlib ];
2015-07-17 04:25:30 +02:00
configureFlags = [
"--localstatedir=/var"
"--sysconfdir=/etc"
];
2017-01-30 12:38:02 +01:00
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-19 22:33:32 +01:00
license = stdenv.lib.licenses.gpl2Plus;
platforms = stdenv.lib.platforms.unix;
};
}