ngz pushed a commit to branch master
in repository guix.

commit 7d0c358faaaceecb50725536fa118638a12d7393
Author: Nicolas Goaziou <[email protected]>
AuthorDate: Sun Jul 30 13:00:36 2023 +0200

    gnu: Add texlive-algorithms.
    
    * gnu/packages/tex.scm (texlive-algorithms): New variable.
---
 gnu/packages/tex.scm | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)

diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm
index 77eb1bfe95..6d94554da7 100644
--- a/gnu/packages/tex.scm
+++ b/gnu/packages/tex.scm
@@ -1339,6 +1339,29 @@ definitions for any programming language.  The user can 
adapt a pseudocode
 style to his native language.")
     (license license:lppl)))
 
+(define-public texlive-algorithms
+  (package
+    (name "texlive-algorithms")
+    (version (number->string %texlive-revision))
+    (source (texlive-origin
+             name version
+             (list "doc/latex/algorithms/"
+                   "source/latex/algorithms/"
+                   "tex/latex/algorithms/")
+             (base32
+              "0yw0alkigq77a2ha4hdrvpagqvyy0cv61ddhvf227wlwmvw5ch2w")))
+    (outputs '("out" "doc"))
+    (build-system texlive-build-system)
+    (home-page "https://ctan.org/pkg/algorithms";)
+    (synopsis "A suite of tools for typesetting algorithms in pseudo-code")
+    (description
+     "The package consists of two environments: @code{algorithm} and
+@code{algorithmic}.  The @code{algorithm} package defines a floating
+@code{algorithm} environment designed to work with the @code{algorithmic}
+style.  Within an @code{algorithmic} environment a number of commands for
+typesetting popular algorithmic constructs are available.")
+    (license license:lgpl2.1)))
+
 (define-public texlive-apnum
   (package
     (name "texlive-apnum")

Reply via email to