diff options
| author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-05-14 11:24:04 +0200 | 
|---|---|---|
| committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-18 18:10:57 +0200 | 
| commit | d4c175e015d6bf85785b5bdf8ead46905980de34 (patch) | |
| tree | 7b90ab1dc1e4f5f9a87b9360bcfabf0faa01f642 | |
| parent | 626d67e657042d98d02236159b2dc0b0a2c696d3 (diff) | |
gnu: texlive-preprint: Fix build.
* gnu/packages/tex.scm (texlive-preprint)[source]: Use TEXLIVE-ORIGIN
instead of TEXLIVE-REF and SVN-FETCH.
| -rw-r--r-- | gnu/packages/tex.scm | 20 | 
1 files changed, 9 insertions, 11 deletions
| diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 3c24310045..21d6fbf041 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -10936,18 +10936,16 @@ figure versions offered by many professional fonts.")  (define-public texlive-preprint    (package      (name "texlive-preprint") -    (version "1.0e") -    (source -     (origin -       (method svn-fetch) -       (uri (texlive-ref "latex" "preprint")) -       (file-name (string-append name "-" version "-checkout")) -       (sha256 -        (base32 -         "173ik9xad3zih6gcdwdkzyljarh06ky6c5d2x1yjs22qqi75py5a")))) +    (version (number->string %texlive-revision)) +    (source (texlive-origin +             name version +             (list "doc/latex/preprint/" "source/latex/preprint/" +                   "tex/latex/preprint/") +             (base32 +              "198xwg6mll3yndc1kf79l6zgnq3nsk7fsh3rlj28nipd26ysw6lq"))) +    (outputs '("out" "doc"))      (build-system texlive-build-system) -    (arguments '(#:tex-directory "latex/preprint")) -    (home-page "http://www.ctan.org/pkg/preprint") +    (home-page "https://ctan.org/pkg/preprint")      (synopsis "Bundle of modules for preprints")      (description "The bundle comprises: @code{authblk}, which permits  footnote style author/affiliation input in the @command{\\author} command, | 
