diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-05-14 11:14:52 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-18 18:10:56 +0200 |
commit | 0bea37aae7a5b3a88602041a88a38bc4ecb2d337 (patch) | |
tree | dda8be4214a73ef6b039096b1e90cdced3b91e45 | |
parent | 8844e6072f61e2f32ff283efdf4fe1caf366d2c7 (diff) | |
download | guix-0bea37aae7a5b3a88602041a88a38bc4ecb2d337.tar.gz |
gnu: texlive-booktabs: Fix build.
* gnu/packages/tex.scm (texlive-booktabs)[source]: Use TEXLIVE-ORIGIN instead of TEXLIVE-REF and SVN-FETCH.
-rw-r--r-- | gnu/packages/tex.scm | 18 |
1 files changed, 8 insertions, 10 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index a7388a5625..f5460553bc 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -10424,17 +10424,15 @@ package to handle all of the possible unit-related needs of LaTeX users.") (package (name "texlive-booktabs") (version (number->string %texlive-revision)) - (source - (origin - (method svn-fetch) - (uri (texlive-ref "latex" "booktabs")) - (file-name (string-append name "-" version "-checkout")) - (sha256 - (base32 - "1mycxzl761p2zzmva8xsjbxbvrxx3vhi5p160mh9kiqwhrs5biz5")))) + (source (texlive-origin + name version + (list "doc/latex/booktabs/" "source/latex/booktabs/" + "tex/latex/booktabs/") + (base32 + "0pv2kv4hgayqfcij2sz1jmk6kbxqccyaksz8xlw5kvqrbag9vxm3"))) + (outputs '("out" "doc")) (build-system texlive-build-system) - (arguments '(#:tex-directory "latex/booktabs")) - (home-page "http://www.ctan.org/pkg/booktabs") + (home-page "https://ctan.org/pkg/booktabs") (synopsis "Publication quality tables in LaTeX") (description "This package enhances the quality of tables in LaTeX, providing extra |