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>
This commit is contained in:
Philip McGrath 2021-03-19 14:24:50 -04:00 committed by Leo Prikler
parent d8e6486877
commit 6f71fd4a5e
No known key found for this signature in database
GPG key ID: 442A84B8C70E2F87

View file

@ -54,13 +54,17 @@ (define nanopass
(file-name (git-file-name "nanopass" version))))) (file-name (git-file-name "nanopass" version)))))
(define stex (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 (origin
(method git-fetch) (method git-fetch)
(uri (git-reference (uri (git-reference
(url "https://github.com/dybvig/stex") (url "https://github.com/dybvig/stex")
(commit (string-append "v" version)))) (commit commit)))
(sha256 (base32 "1q5i8pf4cdfjsj6r2k1rih7ljbfggyxdng2p2fvsgarzihpsin2i")) (sha256 (base32 "01jnvw8qw33gnpzwrakwhsr05h6b609lm180jnspcrb7lds2p23d"))
(file-name (git-file-name "stex" version))))) (file-name (git-file-name "stex" version)))))
(define-public chez-scheme (define-public chez-scheme