mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 13:58:15 -05:00
gnu: mit-scheme: Use minimal texlive-union.
* gnu/packages/scheme.scm (mit-scheme)[native-inputs]: Replace texlive with texlive-union.
This commit is contained in:
parent
dece8c91a9
commit
9b02a79bb0
1 changed files with 5 additions and 1 deletions
|
@ -105,6 +105,10 @@ (define-public mit-scheme
|
||||||
(find-files "src/compiler" "^make\\.")))
|
(find-files "src/compiler" "^make\\.")))
|
||||||
(chdir "src")
|
(chdir "src")
|
||||||
#t))
|
#t))
|
||||||
|
;; FIXME: the texlive-union insists on regenerating fonts. It stores
|
||||||
|
;; them in HOME, so it needs to be writeable.
|
||||||
|
(add-before 'build 'set-HOME
|
||||||
|
(lambda _ (setenv "HOME" "/tmp") #t))
|
||||||
(replace 'build
|
(replace 'build
|
||||||
(lambda* (#:key system outputs #:allow-other-keys)
|
(lambda* (#:key system outputs #:allow-other-keys)
|
||||||
(let ((out (assoc-ref outputs "out")))
|
(let ((out (assoc-ref outputs "out")))
|
||||||
|
@ -151,7 +155,7 @@ (define-public mit-scheme
|
||||||
(delete-file-recursively old-doc-dir)
|
(delete-file-recursively old-doc-dir)
|
||||||
#t))))))
|
#t))))))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("texlive" ,texlive)
|
`(("texlive" ,(texlive-union (list texlive-tex-texinfo)))
|
||||||
("texinfo" ,texinfo)
|
("texinfo" ,texinfo)
|
||||||
("m4" ,m4)))
|
("m4" ,m4)))
|
||||||
(inputs
|
(inputs
|
||||||
|
|
Loading…
Reference in a new issue