guix-commits
[Top][All Lists]
Advanced

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

02/04: gnu: chez-scheme: Update stex.


From: guix-commits
Subject: 02/04: gnu: chez-scheme: Update stex.
Date: Mon, 5 Apr 2021 10:10:43 -0400 (EDT)

leoprikler pushed a commit to branch master
in repository guix.

commit 6f71fd4a5e9f2ccd0ae8b78cdb59d53e9cde9544
Author: Philip McGrath <philip@philipmcgrath.com>
AuthorDate: Fri Mar 19 14:24:50 2021 -0400

    gnu: chez-scheme: Update stex.
    
    Get a patch from upstream that will help us simplify the build process
    for the Chez Scheme documentation.
    
    * gnu/packages/chez.scm (chez-stex): Update to commit 5405149.
    
    Signed-off-by: Leo Prikler <leo.prikler@student.tugraz.at>
---
 gnu/packages/chez.scm | 10 +++++++---
 1 file changed, 7 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/chez.scm b/gnu/packages/chez.scm
index 3918e77..b0b9abf 100644
--- a/gnu/packages/chez.scm
+++ b/gnu/packages/chez.scm
@@ -54,13 +54,17 @@
       (file-name (git-file-name "nanopass" version)))))
 
 (define stex
-  (let ((version "1.2.2"))
+  ;; This commit includes a fix, which we would otherwise want to use as
+  ;; patch.  Let's revert to tagged releases as soon as one becomes available.
+  (let* ((commit "54051494434a197772bf6ca5b4e6cf6be55f39a5")
+         (version "1.2.2")
+         (version (git-version version "1" commit)))
     (origin
       (method git-fetch)
       (uri (git-reference
             (url "https://github.com/dybvig/stex";)
-            (commit (string-append "v" version))))
-      (sha256 (base32 "1q5i8pf4cdfjsj6r2k1rih7ljbfggyxdng2p2fvsgarzihpsin2i"))
+            (commit commit)))
+      (sha256 (base32 "01jnvw8qw33gnpzwrakwhsr05h6b609lm180jnspcrb7lds2p23d"))
       (file-name (git-file-name "stex" version)))))
 
 (define-public chez-scheme



reply via email to

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