From b681c05b6edc3ff8f695858c9fa6799cf92889ae Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Tue, 29 Aug 2023 15:54:16 +0200 Subject: [PATCH] gnu: Add texlive-linegoal. * gnu/packages/tex.scm (texlive-linegoal): New variable. --- gnu/packages/tex.scm | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 7fc6d707b4..30b260c4f7 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -87209,6 +87209,27 @@ (define-public texlive-limap a whole document.") (license license:lppl1.3c))) +(define-public texlive-linegoal + (package + (name "texlive-linegoal") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/linegoal/" + "source/latex/linegoal/" + "tex/latex/linegoal/") + (base32 + "1aipk7y42gkibpaqicbw8myfyj94qs736m2sk3l390xidz81fmw8"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/linegoal") + (synopsis "@emph{dimen} that returns the space left on the line") + (description + "The @code{linegoal} package provides a macro @code{\\linegoal} to be used +with @code{\\setlength}: @samp{\\setlength\\linegoal} will set +@samp{} to the horizontal length of the remainder of the line.") + (license license:lppl1.3+))) + ;;; ;;; Avoid adding new packages to the end of this file. To reduce the chances ;;; of a merge conflict, place them above by existing packages with similar