From 76344dd3191afc4c8e2f129ac89e50e90e5b024c Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Tue, 29 Aug 2023 15:55:31 +0200 Subject: [PATCH] gnu: Add texlive-method. * gnu/packages/tex.scm (texlive-method): New variable. --- gnu/packages/tex.scm | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 3de8727ab8..1cc201c97f 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -88761,6 +88761,25 @@ displaying document license information; facilitate basic internationalisation and localisation.") (license license:lppl1.3+))) +(define-public texlive-method + (package + (name "texlive-method") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/method/" "source/latex/method/" + "tex/latex/method/") + (base32 + "0x8lqdj245jpkqywjwql34l0qvhvbx38qk02kcf03icdy1szfdlr"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/method") + (synopsis "Typeset method and variable declarations") + (description + "The package supports typesetting of programming language method and variable +declarations. It supports declarations in German, French and English.") + (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