From 0f5c6eba31ec65808e5e848e28a07969bd8076d4 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Tue, 29 Aug 2023 15:45:09 +0200 Subject: [PATCH] gnu: Add texlive-bubblesort. * gnu/packages/tex.scm (texlive-bubblesort): 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 ff85a43878..7ed5b19e0a 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -74858,6 +74858,29 @@ vertical bar specifier in between two bracketed parts. Each macro comes in a fixed-size version and an expanding version.") (license license:public-domain))) +(define-public texlive-bubblesort + (package + (name "texlive-bubblesort") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/bubblesort/" + "source/latex/bubblesort/" + "tex/latex/bubblesort/") + (base32 + "1gmrw2m0gr082xj5qmjr6bc0gk7wqqzs38mrf3nmymbd7nv21crd"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/bubblesort") + (synopsis "Bubble sorts a list") + (description + "This package sorts a list of TeX items in increasing order where increasing +is determined by a comparator macro. By default it sorts real numbers with +the usual meaning of increasing but some other examples are discussed in the +documentation. A second macro is included which sorts one list and applies +the same permutation to a second list.") + (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