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

31 lines
869 B
Nix
Raw Normal View History

{stdenv, fetchurl, lzo, openssl, zlib}:
stdenv.mkDerivation rec {
2015-07-17 02:25:30 +00:00
version = "1.0.26";
name = "tinc-${version}";
src = fetchurl {
url = "http://www.tinc-vpn.org/packages/tinc-${version}.tar.gz";
2015-07-17 02:25:30 +00:00
sha256 = "08ds8s32cjslms1q227ihd6jz35583v378ij4pknfa5xngfijhrb";
};
buildInputs = [ lzo openssl zlib ];
2015-07-17 02:25:30 +00: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-19 21:33:32 +00:00
license = stdenv.lib.licenses.gpl2Plus;
};
}