gnu: Use HTTPS for nodejs.org.
* gnu/packages/node.scm (node)[source, home-page]: Use HTTPS.
This commit is contained in:
parent
5112238fd6
commit
e90271604a
|
@ -47,7 +47,7 @@
|
||||||
(version "9.11.1")
|
(version "9.11.1")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "http://nodejs.org/dist/v" version
|
(uri (string-append "https://nodejs.org/dist/v" version
|
||||||
"/node-v" version ".tar.gz"))
|
"/node-v" version ".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
|
@ -177,6 +177,6 @@ for easily building fast, scalable network applications. Node.js uses an
|
||||||
event-driven, non-blocking I/O model that makes it lightweight and efficient,
|
event-driven, non-blocking I/O model that makes it lightweight and efficient,
|
||||||
perfect for data-intensive real-time applications that run across distributed
|
perfect for data-intensive real-time applications that run across distributed
|
||||||
devices.")
|
devices.")
|
||||||
(home-page "http://nodejs.org/")
|
(home-page "https://nodejs.org/")
|
||||||
(license expat)
|
(license expat)
|
||||||
(properties '((timeout . 3600))))) ; 1 h
|
(properties '((timeout . 3600))))) ; 1 h
|
||||||
|
|
Loading…
Reference in New Issue