gnu: texlive-metafont-base: Install missing files.
* gnu/packages/tex.scm (texlive-metafont-base)[arguments]: Also install "misc" and "config" directories.
This commit is contained in:
parent
17aeabdd52
commit
e760a15d35
1 changed files with 4 additions and 2 deletions
|
@ -589,11 +589,13 @@ (define-public texlive-metafont-base
|
|||
(lambda* (#:key outputs #:allow-other-keys)
|
||||
(let* ((out (assoc-ref outputs "out"))
|
||||
(base (string-append out "/share/texmf-dist/web2c"))
|
||||
(mf (string-append out "/share/texmf-dist/metafont/base")))
|
||||
(mf (string-append out "/share/texmf-dist/metafont/")))
|
||||
(mkdir-p base)
|
||||
(mkdir-p mf)
|
||||
(install-file "build/mf.base" base)
|
||||
(copy-recursively "base" mf)
|
||||
(for-each (lambda (where)
|
||||
(copy-recursively where (string-append mf where)))
|
||||
(list "base" "misc" "config"))
|
||||
#t))))))
|
||||
(native-inputs
|
||||
`(("texlive-bin" ,texlive-bin)))
|
||||
|
|
Loading…
Reference in a new issue