From 591706d5630223fec7fd9bb157026806021012a9 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Tue, 29 Aug 2023 15:59:02 +0200 Subject: [PATCH] gnu: Add texlive-properties. * gnu/packages/tex.scm (texlive-properties): 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 006c08d9d8..fbba7f71d3 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -93097,6 +93097,25 @@ (define-public texlive-proofread either corrected or uncorrected state, both without margin notes.") (license license:lppl1.3c))) +(define-public texlive-properties + (package + (name "texlive-properties") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/properties/" + "tex/latex/properties/") + (base32 + "0za99c6894nmss3jz7ivbx7gia2c6pzqsxnr0rmzayd4ig4q543y"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/properties") + (synopsis "Load properties from a file") + (description + "The package loads properties (key, value) from a properties file, e.g., +@code{\\jobname.properties}.") + (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