From 4004ebc447e2f427b68b3ae593df68a2ae5e0d1b Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Tue, 29 Aug 2023 15:56:33 +0200 Subject: [PATCH] gnu: Add texlive-newlfm. * gnu/packages/tex.scm (texlive-newlfm): New variable. --- gnu/packages/tex.scm | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index feef4a1305..f436a31196 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -90034,6 +90034,30 @@ LaTeX input and output mechanisms. Some facilities of the @code{verbatim} package are also mapped.") (license license:lppl))) +(define-public texlive-newlfm + (package + (name "texlive-newlfm") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/newlfm/" "source/latex/newlfm/" + "tex/latex/newlfm/") + (base32 + "1psscqagy9p1gv208dwv0xd053afpaa6s3rxasv69ni6inm3wlln"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/newlfm") + (synopsis "Write letters, facsimiles, and memos") + (description + "This package integrates the @code{letter} class with @code{fancyhdr} and +@code{geometry} to automatically make letterhead stationery. It is useful for +writing letters, fax, and memos. You can set up an address book using wrapper +macros. You put all the information for a person into a wrapper and then put +the wrapper in a document. The class handles letterheads automatically. You +place the object for the letterhead (picture, information, etc.) in a box and +all sizing is set automatically.") + (license license:gpl3+))) + ;;; ;;; 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