From 44dd3d579db3aa467e41d0b431029e46cae8e12d Mon Sep 17 00:00:00 2001 From: Konrad Hinsen Date: Fri, 16 Mar 2018 14:53:09 +0100 Subject: import: elpa: use https in download URLs MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * guix/import/elpa.scm (elpa-url): Use HTTPS. Signed-off-by: Ludovic Courtès --- 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 45a419217c..7f76a13adb 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)) -- cgit v1.2.3