From a025fcdc915ee80feb2fce5566028d460e13a092 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Tue, 29 Aug 2023 15:55:22 +0200 Subject: [PATCH] gnu: Add texlive-memory. * gnu/packages/tex.scm (texlive-memory): New variable. --- gnu/packages/tex.scm | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index ea024c18b9..d8940235cd 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -88598,6 +88598,24 @@ (define-public texlive-memexsupp in the fullness of time be adopted into the main @code{memoir} release.") (license license:lppl))) +(define-public texlive-memory + (package + (name "texlive-memory") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/memory/" "source/latex/memory/" + "tex/latex/memory/") + (base32 + "04rkyi3kb90hcbhy124yw2akzsy5ws36bh2pva0zxncq62l60lj4"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/memory") + (synopsis "Containers for data in LaTeX") + (description + "The package allows the user to declare single object or array containers.") + (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