guix-commits
[Top][All Lists]
Advanced

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

03/09: import: elpa: use https in download URLs


From: Ludovic Courtès
Subject: 03/09: import: elpa: use https in download URLs
Date: Sat, 17 Mar 2018 19:02:37 -0400 (EDT)

civodul pushed a commit to branch master
in repository guix.

commit 44dd3d579db3aa467e41d0b431029e46cae8e12d
Author: Konrad Hinsen <address@hidden>
Date:   Fri Mar 16 14:53:09 2018 +0100

    import: elpa: use https in download URLs
    
    * guix/import/elpa.scm (elpa-url): Use HTTPS.
    
    Signed-off-by: Ludovic Courtès <address@hidden>
---
 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 45a4192..7f76a13 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))



reply via email to

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