From 3c3a88051bd8e3addf21a42b4f387e438fa635fc Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Tue, 29 Aug 2023 15:55:27 +0200 Subject: [PATCH] gnu: Add texlive-menukeys. * gnu/packages/tex.scm (texlive-menukeys): New variable. --- gnu/packages/tex.scm | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 1600931d53..83ada412c6 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -88677,6 +88677,27 @@ through a program's menu.") "This LaTeX package can be used for typesetting simple restaurant menus.") (license license:lppl1.3+))) +(define-public texlive-menukeys + (package + (name "texlive-menukeys") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/menukeys/" + "source/latex/menukeys/" + "tex/latex/menukeys/") + (base32 + "1cscn6mafm08459amgacy2awa5disqjlr0nbg0zwb0wfkgk5iqln"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/menukeys") + (synopsis "Format menu sequences, paths and keystrokes from lists") + (description + "This package is designed to format menu sequences, paths and keyboard +shortcuts automatically. There are several predefined styles and one can +define one's own styles in a flexible way.") + (license license:lppl1.3c))) + ;;; ;;; 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