10 stdenv.mkDerivation rec {
15 url = "https://www.tinc-vpn.org/packages/tinc-${version}.tar.gz";
16 sha256 = "021i2sl2mjscbm8g59d7vs74iw3gf0m48wg7w3zhwj6czarkpxs0";
26 "--localstatedir=/var"
30 #passthru.tests = { inherit (nixosTests) tinc; }; # test uses tinc_pre
33 description = "VPN daemon with full mesh routing";
35 tinc is a Virtual Private Network (VPN) daemon that uses tunnelling and
36 encryption to create a secure private network between hosts on the
37 Internet. It features full mesh routing, as well as encryption,
38 authentication, compression and ethernet bridging.
40 homepage = "http://www.tinc-vpn.org/";
41 license = lib.licenses.gpl2Plus;
42 mainProgram = "tincd";
43 platforms = lib.platforms.unix;