mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: Add tinc.
* gnu/packages/vpn.scm (tinc): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
08cc159a70
commit
feca8e2bc7
1 changed files with 23 additions and 0 deletions
|
@ -2,6 +2,7 @@
|
|||
;;; Copyright © 2013 Andreas Enge <andreas@enge.fr>
|
||||
;;; Copyright © 2013 Ludovic Courtès <ludo@gnu.org>
|
||||
;;; Copyright © 2014 Eric Bavier <bavier@member.fsf.org>
|
||||
;;; Copyright © 2015 Jeff Mickey <j@codemac.net>
|
||||
;;;
|
||||
;;; This file is part of GNU Guix.
|
||||
;;;
|
||||
|
@ -155,3 +156,25 @@ (define-public openvpn
|
|||
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+)))
|
||||
|
|
Loading…
Reference in a new issue