mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 22:08:16 -05:00
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:
parent
d8e6486877
commit
6f71fd4a5e
1 changed files with 7 additions and 3 deletions
|
@ -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
|
||||||
|
|
Loading…
Reference in a new issue