about summary refs log tree commit diff
path: root/pkgs/tools/networking/tinc
diff options
context:
space:
mode:
authorJames Cook <james.cook@utoronto.ca>2013-01-17 22:52:15 -0800
committerJames Cook <james.cook@utoronto.ca>2013-01-17 22:52:15 -0800
commit2ba4f46752cbd9e6869a4c48fbea4033486c34c4 (patch)
tree24a6f0df911dbbebf3f80f3692a06b4c17f0ac8f /pkgs/tools/networking/tinc
parent52fb5d86a97ccab82a933a84ac0c33d3308404b5 (diff)
downloadnixlib-2ba4f46752cbd9e6869a4c48fbea4033486c34c4.tar
nixlib-2ba4f46752cbd9e6869a4c48fbea4033486c34c4.tar.gz
nixlib-2ba4f46752cbd9e6869a4c48fbea4033486c34c4.tar.bz2
nixlib-2ba4f46752cbd9e6869a4c48fbea4033486c34c4.tar.lz
nixlib-2ba4f46752cbd9e6869a4c48fbea4033486c34c4.tar.xz
nixlib-2ba4f46752cbd9e6869a4c48fbea4033486c34c4.tar.zst
nixlib-2ba4f46752cbd9e6869a4c48fbea4033486c34c4.zip
tinc: A VPN daemon with full mesh routing.
Diffstat (limited to 'pkgs/tools/networking/tinc')
-rw-r--r--pkgs/tools/networking/tinc/default.nix30
1 files changed, 30 insertions, 0 deletions
diff --git a/pkgs/tools/networking/tinc/default.nix b/pkgs/tools/networking/tinc/default.nix
new file mode 100644
index 000000000000..dadadc085205
--- /dev/null
+++ b/pkgs/tools/networking/tinc/default.nix
@@ -0,0 +1,30 @@
+{stdenv, fetchurl, lzo, openssl, zlib}:
+
+stdenv.mkDerivation rec {
+  version = "1.0.19";
+  name = "tinc-${version}";
+
+  src = fetchurl {
+    url = "http://www.tinc-vpn.org/packages/tinc-${version}.tar.gz";
+    sha256 = "183nxj23d05vc3pxwbb692lr048wr81wnv0avzlkdm4r6c3bp7jh";
+  };
+
+  buildInputs = [ lzo openssl zlib ];
+
+  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/";
+    license = "gpl2Plus";
+  };
+}