diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-30 16:31:08 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-30 19:41:58 +0200 |
commit | ccad0d2cef772e10fd65d8f1a65fe568f18767ad (patch) | |
tree | 9ac6cd72a533de283fdbfdc02835efc5987d2979 /gnu/packages | |
parent | 42d9e08f9edddc7470263636d93695e975c7150b (diff) | |
download | guix-ccad0d2cef772e10fd65d8f1a65fe568f18767ad.tar.gz |
gnu: Add texlive-mecaso.
* gnu/packages/tex.scm (texlive-mecaso): New variable.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/tex.scm | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index df4067044b..1a5e494f63 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -4691,6 +4691,25 @@ representation of common vectors and tensors such as forces, velocities, moments of inertia, etc.") (license license:lppl1.3c))) +(define-public texlive-mecaso + (package + (name "texlive-mecaso") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/mecaso/" "tex/latex/mecaso/") + (base32 + "11h10mxjdmknvi8r4dnkhv5q2bzgckwaq7p3dziyxkibq1ciq622"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/mecaso") + (synopsis "Formulas frequently used in rigid body mechanics") + (description + "This package provides a number of formulas frequently used in rigid body +mechanics. Since most of these formulas are long and tedious to write, this +package wraps them up in short commands.") + (license license:gpl3+))) + (define-public texlive-bibtex8 (package (name "texlive-bibtex8") |