diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2019-09-12 12:06:01 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2019-09-12 12:10:05 +0200 |
commit | 63d57404b3d29fc9a4542cf183a957c714fd0ecd (patch) | |
tree | a5ce079c915de5c27adf9b3b74a43ee1924b77bf | |
parent | 4913828bb1f1c9f672a49c19090ba4ae8d14e88b (diff) |
gnu: texlive-xypic: Install all files.
Reported by numerobis on the #guix IRC channel.
* gnu/packages/tex.scm (texlive-xypic)[source]: Install "tex/generic/xypic"
files.
[arguments]: Remove #:tex-directory.
-rw-r--r-- | gnu/packages/tex.scm | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 43e1c44c72..c293d2f661 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -6817,17 +6817,14 @@ titles.") "/fonts/afm/public/xypic/" "/fonts/tfm/public/xypic/" "/fonts/type1/public/xypic/" - - ;;"/tex/generic/xypic/" ; I guess these are generated - ) + "/tex/generic/xypic/") (base32 - "0sqkkvjzzsiazvh8803qqyrcv4is3m1qs9x9v2m35jjikbqc08y8")))) + "09b51bbm189xh7039h5n8nmab5nn2bybhh26qjn08763m80zdhjg") + #:trivial? #t))) (package (inherit template) (arguments (substitute-keyword-arguments (package-arguments template) - ((#:tex-directory _ #t) - "tex/generic/xypic") ((#:phases phases) `(modify-phases ,phases (delete 'reset-gzip-timestamps))))) |