From feff67a6cfa34e17f5fda5d0e39c1b5790dfa5ea Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Tue, 29 Aug 2023 15:54:12 +0200 Subject: [PATCH] gnu: Add texlive-lewis. * gnu/packages/tex.scm (texlive-lewis): 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 7ad9b286ca..afb0fa69eb 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -87112,6 +87112,24 @@ has facilities for the paragraph text's left edge to follow the outline of capitals that have a regular shape (such as @samp{A} and @samp{V}).") (license license:lppl1.3+))) +(define-public texlive-lewis + (package + (name "texlive-lewis") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/lewis/" "tex/latex/lewis/") + (base32 + "13w585adasl0ss9mfvpnx8f55iy18748zv66x038nw2i25yrs0ly"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/lewis") + (synopsis "Draw Lewis structures") + (description + "The package provides rudimentary support for drawing Lewis Structures. +Support is limited to elements that support the octet rule.") + (license license:public-domain))) + ;;; ;;; 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