guix-patches
[Top][All Lists]
Advanced

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

[bug#30835] [PATCH 1/3] guix import elpa: use https in download URLs


From: Konrad Hinsen
Subject: [bug#30835] [PATCH 1/3] guix import elpa: use https in download URLs
Date: Fri, 16 Mar 2018 14:53:09 +0100

---
 guix/import/elpa.scm | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/guix/import/elpa.scm b/guix/import/elpa.scm
index 45a419217..7f76a13ad 100644
--- a/guix/import/elpa.scm
+++ b/guix/import/elpa.scm
@@ -69,9 +69,9 @@ NAMES (strings)."
 (define* (elpa-url #:optional (repo 'gnu))
   "Retrun the URL of REPO."
   (let ((elpa-archives
-         '((gnu . "http://elpa.gnu.org/packages";)
-           (melpa-stable . "http://stable.melpa.org/packages";)
-           (melpa . "http://melpa.org/packages";))))
+         '((gnu . "https://elpa.gnu.org/packages";)
+           (melpa-stable . "https://stable.melpa.org/packages";)
+           (melpa . "https://melpa.org/packages";))))
     (assq-ref elpa-archives repo)))
 
 (define* (elpa-fetch-archive #:optional (repo 'gnu))
-- 
2.16.2






reply via email to

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