guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

02/03: gnu: Add tinc.


From: Ludovic Courtès
Subject: 02/03: gnu: Add tinc.
Date: Thu, 20 Aug 2015 17:14:39 +0000

civodul pushed a commit to branch master
in repository guix.

commit feca8e2bc703b97ea2862935f762d423f983be7e
Author: Jeff Mickey <address@hidden>
Date:   Mon Aug 17 01:16:45 2015 -0700

    gnu: Add tinc.
    
    * gnu/packages/vpn.scm (tinc): New variable.
    
    Signed-off-by: Ludovic Courtès <address@hidden>
---
 gnu/packages/vpn.scm |   23 +++++++++++++++++++++++
 1 files changed, 23 insertions(+), 0 deletions(-)

diff --git a/gnu/packages/vpn.scm b/gnu/packages/vpn.scm
index d866214..0c538da 100644
--- a/gnu/packages/vpn.scm
+++ b/gnu/packages/vpn.scm
@@ -2,6 +2,7 @@
 ;;; Copyright © 2013 Andreas Enge <address@hidden>
 ;;; Copyright © 2013 Ludovic Courtès <address@hidden>
 ;;; Copyright © 2014 Eric Bavier <address@hidden>
+;;; Copyright © 2015 Jeff Mickey <address@hidden>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -155,3 +156,25 @@ bridged configurations and remote access facilities.  It 
uses a custom
 security protocol that utilizes SSL/TLS for key exchange.  It is capable of
 traversing network address translators (NATs) and firewalls.")
     (license license:gpl2)))
+
+(define-public tinc
+  (package
+    (name "tinc")
+    (version "1.0.26")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append "http://tinc-vpn.org/packages/";
+                                  name "-" version ".tar.gz"))
+              (sha256
+               (base32
+                "08ds8s32cjslms1q227ihd6jz35583v378ij4pknfa5xngfijhrb"))))
+    (build-system gnu-build-system)
+    (inputs `(("zlib" ,zlib)
+              ("lzo" ,lzo)
+              ("openssl" ,openssl)))
+    (home-page "http://tinc-vpn.org";)
+    (synopsis "Virtual Private Network (VPN) daemon")
+    (description
+     "Tinc is a VPN that uses tunnelling and encryption to create a secure
+private network between hosts on the internet.")
+    (license license:gpl2+)))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]