me
/
guix
Archived
1
0
Fork 0

gnu: corkscrew: Download source from a mirror.

* gnu/packages/ssh.scm (corkscrew)[source]: Use
‘https://downloads.openwrt.org’.
master
Tobias Geerinckx-Rice 2017-03-27 16:57:36 +02:00
parent a800c2175f
commit 040ae44aa1
No known key found for this signature in database
GPG Key ID: 91CCDB9B48541B99
1 changed files with 5 additions and 2 deletions

View File

@ -263,8 +263,11 @@ libssh library.")
(source (source
(origin (origin
(method url-fetch) (method url-fetch)
(uri (string-append "http://www.agroman.net/corkscrew/corkscrew-" ;; The agroman.net domain name expired on 2017-03-23, and the original
version ".tar.gz")) ;; "http://www.agroman.net/corkscrew/corkscrew-2.0.tar.gz" now returns
;; bogus HTML. Perhaps it will yet return. Until then, use a mirror.
(uri (string-append "https://downloads.openwrt.org/sources/"
"corkscrew-" version ".tar.gz"))
(sha256 (base32 (sha256 (base32
"1gmhas4va6gd70i2x2mpxpwpgww6413mji29mg282jms3jscn3qd")))) "1gmhas4va6gd70i2x2mpxpwpgww6413mji29mg282jms3jscn3qd"))))
(build-system gnu-build-system) (build-system gnu-build-system)