diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2018-10-24 05:33:42 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2018-10-26 02:30:51 +0200 |
commit | e81ddedaef5b298e52e46783c8e53b6351596a7b (patch) | |
tree | b2f5371e0d16060dfb56940b826b0a6b38136396 /gnu | |
parent | dea0178fb139c432297889493c911daa24261abd (diff) | |
download | guix-e81ddedaef5b298e52e46783c8e53b6351596a7b.tar guix-e81ddedaef5b298e52e46783c8e53b6351596a7b.tar.gz |
gnu: tinc: Use HTTPS for sources and home page.
* gnu/packages/vpn.scm (tinc)[source, home-page]: Use HTTPS.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/vpn.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/packages/vpn.scm b/gnu/packages/vpn.scm index 44e736ed45..dcb114670e 100644 --- a/gnu/packages/vpn.scm +++ b/gnu/packages/vpn.scm @@ -315,7 +315,7 @@ traversing network address translators (@dfn{NAT}s) and firewalls.") (version "1.0.35") (source (origin (method url-fetch) - (uri (string-append "http://tinc-vpn.org/packages/" + (uri (string-append "https://tinc-vpn.org/packages/" name "-" version ".tar.gz")) (sha256 (base32 @@ -328,7 +328,7 @@ traversing network address translators (@dfn{NAT}s) and firewalls.") (inputs `(("zlib" ,zlib) ("lzo" ,lzo) ("openssl" ,openssl))) - (home-page "http://tinc-vpn.org") + (home-page "https://tinc-vpn.org") (synopsis "Virtual Private Network (VPN) daemon") (description "Tinc is a VPN that uses tunnelling and encryption to create a secure |