gnu: cyrus-sasl: Add alternate source URL.
* gnu/packages/cyrus-sasl.scm (cyrus-sasl)[source]: Add alternate URL; the previous one is currently unreachable.
This commit is contained in:
parent
60bbd4f1be
commit
42b001381e
1 changed files with 7 additions and 3 deletions
|
@ -1,5 +1,5 @@
|
||||||
;;; GNU Guix --- Functional package management for GNU
|
;;; GNU Guix --- Functional package management for GNU
|
||||||
;;; Copyright © 2013 Ludovic Courtès <ludo@gnu.org>
|
;;; Copyright © 2013, 2014 Ludovic Courtès <ludo@gnu.org>
|
||||||
;;; Copyright © 2013 Andreas Enge <andreas@enge.fr>
|
;;; Copyright © 2013 Andreas Enge <andreas@enge.fr>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
|
@ -34,8 +34,12 @@
|
||||||
(version "2.1.26")
|
(version "2.1.26")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "ftp://ftp.cyrusimap.org/cyrus-sasl/cyrus-sasl-" version
|
(uri (list (string-append
|
||||||
".tar.gz"))
|
"http://cyrusimap.org/releases/cyrus-sasl-"
|
||||||
|
version ".tar.gz")
|
||||||
|
(string-append
|
||||||
|
"ftp://ftp.cyrusimap.org/cyrus-sasl/cyrus-sasl-"
|
||||||
|
version ".tar.gz")))
|
||||||
(sha256 (base32
|
(sha256 (base32
|
||||||
"1hvvbcsg21nlncbgs0cgn3iwlnb3vannzwsp6rwvnn9ba4v53g4g"))))
|
"1hvvbcsg21nlncbgs0cgn3iwlnb3vannzwsp6rwvnn9ba4v53g4g"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
|
|
Reference in a new issue