diff options
author | Konrad Hinsen <konrad.hinsen@fastmail.net> | 2018-03-16 14:53:09 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2018-03-18 00:02:05 +0100 |
commit | 44dd3d579db3aa467e41d0b431029e46cae8e12d (patch) | |
tree | aba585968e54889bb8a09a62e0c1fd20a7431e95 /guix | |
parent | 985934cb218eaa44b255cfc464b11ce05f691973 (diff) |
import: elpa: use https in download URLs
* guix/import/elpa.scm (elpa-url): Use HTTPS.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'guix')
-rw-r--r-- | guix/import/elpa.scm | 6 |
1 files 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)) |