From 4b2df96d86508437a35b6e1ce16a030b396668e3 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Tue, 29 Aug 2023 15:50:52 +0200 Subject: [PATCH] gnu: Add texlive-formular. * gnu/packages/tex.scm (texlive-formular): New variable. --- gnu/packages/tex.scm | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 7558feab08..040fb44009 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -82948,6 +82948,28 @@ ability to enter any Unicode character using the notation @code{\\u@var{XXXX}}, where @var{XXXX} are four hex digits.") (license license:lppl1.2+))) +(define-public texlive-formular + (package + (name "texlive-formular") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/formular/" + "source/latex/formular/" + "tex/latex/formular/") + (base32 + "1vjqb9r9c9vwxwnn87zwpd2m94ygaqgvi8pzp37hc9kqxbpx1wkx"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/formular") + (synopsis "Create forms containing field for manual entry") + (description + "When typesetting forms there often arises the need for defining fields which +consist of one or more lines where the customer can write something down +manually. This package offers some commands for defining such fields in +a distinctive way.") + (license license:lppl))) + ;;; ;;; 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