From 21718c6516708c38e3d2262b9fa769af74ff96a4 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Sun, 30 Jul 2023 13:07:35 +0200 Subject: [PATCH] gnu: Add texlive-bropd. * gnu/packages/tex.scm (texlive-bropd): 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 f98d7491bf..217a40f80d 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -1975,6 +1975,29 @@ (define-public texlive-bpchem the labelling of compounds and reference to labelled compounds.") (license license:lppl))) +(define-public texlive-bropd + (package + (name "texlive-bropd") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/bropd/" "source/latex/bropd/" + "tex/latex/bropd/") + (base32 + "1cyyadfvrcym4vvxl9p9zb88692m0578nqljip12xxahb4srcyb9"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (arguments (list #:tex-format "latex")) + (native-inputs (list (texlive-updmap.cfg (list texlive-hypdoc)))) + (home-page "https://ctan.org/pkg/bropd") + (synopsis "Simplified brackets and differentials in LaTeX") + (description + "The package simplifies the process of writing differential operators and +brackets in LaTeX. The commands facilitate the easy manipulation of equations +involving brackets and allow partial differentials to be expressed in an +alternate form.") + (license license:lppl1.3+))) + (define-public texlive-c-pascal (package (name "texlive-c-pascal")