guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

02/03: gnu: exim: Use XZ-compressed sources.


From: guix-commits
Subject: 02/03: gnu: exim: Use XZ-compressed sources.
Date: Tue, 7 Jan 2020 21:10:32 -0500 (EST)

nckx pushed a commit to branch master
in repository guix.

commit c9b99e88f510a4211df2be56f2c13d380f7a99b2
Author: Tobias Geerinckx-Rice <address@hidden>
AuthorDate: Tue Jan 7 18:56:48 2020 +0100

    gnu: exim: Use XZ-compressed sources.
    
    * gnu/packages/mail.scm (exim)[source]: Fetch the .tar.xz archive.
---
 gnu/packages/mail.scm | 19 ++++++++++---------
 1 file changed, 10 insertions(+), 9 deletions(-)

diff --git a/gnu/packages/mail.scm b/gnu/packages/mail.scm
index a674837..30623d7 100644
--- a/gnu/packages/mail.scm
+++ b/gnu/packages/mail.scm
@@ -1264,16 +1264,17 @@ delivery.")
     (source
      (origin
        (method url-fetch)
-       (uri (list (string-append "https://ftp.exim.org/pub/exim/exim4/exim-";
-                                 version ".tar.bz2")
-                  ;; ‘Fix’ releases (exim-x.y.z.f) are kept separately.
-                  (string-append 
"https://ftp.exim.org/pub/exim/exim4/fixes/exim-";
-                                 version ".tar.bz2")
-                  ;; After a new release the previous one is moved here.
-                  (string-append 
"https://ftp.exim.org/pub/exim/exim4/old/exim-";
-                                 version ".tar.bz2")))
+       (uri (let ((file-name (string-append "exim-" version ".tar.xz")))
+              (list (string-append "https://ftp.exim.org/pub/exim/exim4/";
+                                   file-name)
+                    ;; ‘Fix’ releases (exim-x.y.z.f) are kept separately.
+                    (string-append "https://ftp.exim.org/pub/exim/exim4/fixes/";
+                                   file-name)
+                    ;; After a new non-fix release, the old one is moved here.
+                    (string-append "https://ftp.exim.org/pub/exim/exim4/old/";
+                                   file-name))))
        (sha256
-        (base32 "1ng4flyv2jqjbw66dbdgma7kfnnph9h3s1yyc0q27n7q0sx3cwxn"))))
+        (base32 "01g4sfycv13glnmfrapwhjbdw6z1z7w5bwjldxjmglwfw5p3czak"))))
     (build-system gnu-build-system)
     (inputs
      `(("bdb" ,bdb-5.3) ; ‘#error Version 6 and later BDB API is not supported’



reply via email to

[Prev in Thread] Current Thread [Next in Thread]