diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-13 10:51:54 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-18 18:18:09 +0200 |
commit | 667d5bc9fcdb299da5637bb79d2d59b0c301ef82 (patch) | |
tree | 96c80b9b989cda85f655289ab5c18d3a20bcfcf9 /gnu | |
parent | 4f00f57e301313d8e37c57b258f30389dee92cb9 (diff) | |
download | guix-667d5bc9fcdb299da5637bb79d2d59b0c301ef82.tar.gz guix-667d5bc9fcdb299da5637bb79d2d59b0c301ef82.zip |
gnu: Add texlive-tkz-orm.
* gnu/packages/tex.scm (texlive-tkz-orm): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/tex.scm | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 20db166f80..5302481953 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -5482,6 +5482,24 @@ Gnuplot.") using TikZ.") (license license:lppl1.3+))) +(define-public texlive-tkz-orm + (package + (name "texlive-tkz-orm") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/tkz-orm/" "tex/latex/tkz-orm/") + (base32 + "0qmwiglz59djq0xkpsfgqzdf6872z33z9faxn86krs5mxmrik6cc"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/tkz-orm") + (synopsis "Create Object-Role Model (ORM) diagrams") + (description + "The package provides styles for drawing Object-Role Model (ORM) diagrams +in TeX based on the PGF and TikZ picture environment.") + (license (list license:gpl2 license:lppl1.3+)))) + (define-public texlive-amiri (package (name "texlive-amiri") |