diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-05-13 12:03:52 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-18 18:10:45 +0200 |
commit | 50ce21605abec4096730cd3d9b1d7b4c6e2e38d8 (patch) | |
tree | 4a8243ea54e6d9b1a9028a2b30c509f163a1f0a3 | |
parent | e0b4cf6019f520aef4c3d0ea9858a8f1fa215d22 (diff) | |
download | guix-50ce21605abec4096730cd3d9b1d7b4c6e2e38d8.tar.gz guix-50ce21605abec4096730cd3d9b1d7b4c6e2e38d8.zip |
gnu: texlive-latex-marginfix -> texlive-marginfix.
* gnu/packages/tex.scm (texlive-marginfix): New variable.
(texlive-latex-marginfix): Deprecate variable.
-rw-r--r-- | gnu/packages/tex.scm | 28 |
1 files changed, 17 insertions, 11 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 8a83033a03..ff1b23bff6 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -6098,25 +6098,31 @@ always (re)defines a command. There is also @code{\\makeenvironment} and @code{\\provideenvironment} for environments.") (license license:lppl1.3c+))) -(define-public texlive-latex-marginfix +(define-public texlive-marginfix (package - (inherit (simple-texlive-package - "texlive-latex-marginfix" - (list "doc/latex/marginfix/" - "tex/latex/marginfix/") - (base32 "1qinf42mjry8bi5h3kgbi6hcymnk8fw0w43527wm95nc365dq0mf") - #:trivial? #t)) + (name "texlive-marginfix") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/marginfix/" + "source/latex/marginfix/" + "tex/latex/marginfix/") + (base32 + "0y6lmxm5ws2g0rqisvgdc8kg3whnvabrkl662sb4jvvaz02y3qdi"))) + (outputs '("out" "doc")) (build-system texlive-build-system) (home-page "https://ctan.org/pkg/marginfix") - (synopsis "Patch \\marginpar to avoid overfull margins") + (synopsis "Patch @code{\\marginpar} to avoid overfull margins") (description "Authors using LaTeX to typeset books with significant margin material often run into the problem of long notes running off the bottom of the page. -This package implements a solution to make marginpars ``just work'' by keeping -a list of floating inserts and arranging them intelligently in the output -routine.") +This package implements a solution to make @code{marginpars} just work by +keeping a list of floating inserts and arranging them intelligently in the +output routine.") (license license:lppl))) +(define-deprecated-package texlive-latex-marginfix texlive-marginfix) + (define-public texlive-metalogo (package (inherit (simple-texlive-package |