diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-13 10:45:37 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-18 18:18:03 +0200 |
commit | 4453529a9c12472bf29a25ca1ef7f1491c4c7d05 (patch) | |
tree | c98b44bc1cce4c63bfdbd44bce4dd6a244dbf87b | |
parent | ac54214b47c523914ee64619f297e96218fd48c8 (diff) | |
download | guix-4453529a9c12472bf29a25ca1ef7f1491c4c7d05.tar.gz guix-4453529a9c12472bf29a25ca1ef7f1491c4c7d05.zip |
gnu: Add texlive-tikzpackets.
* gnu/packages/tex.scm (texlive-tikzpackets): New variable.
-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 fe6061377c..0b2f34b586 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -5094,6 +5094,24 @@ some garments and other attributes from the TikZducks.") orbital diagrams.") (license license:lppl))) +(define-public texlive-tikzpackets + (package + (name "texlive-tikzpackets") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/tikzpackets/" + "tex/latex/tikzpackets/") + (base32 + "0i5v0yblm3fw0wy0vhl2a0g1r8ib72d2knk60apqvqizl98fn8ff"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/tikzpackets") + (synopsis "Display network packets") + (description + "This package allows you to easily display network packets graphically.") + (license license:expat))) + (define-public texlive-amiri (package (name "texlive-amiri") |