mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
import: elpa: use https in download URLs
* guix/import/elpa.scm (elpa-url): Use HTTPS. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
985934cb21
commit
44dd3d579d
1 changed files with 3 additions and 3 deletions
|
@ -69,9 +69,9 @@ (define (elpa-name->package-name name)
|
|||
(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))
|
||||
|
|
Loading…
Reference in a new issue