diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-13 09:41:13 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-18 18:17:39 +0200 |
commit | 185a8ced2a1bae0b2ba674db9c0185185737fe39 (patch) | |
tree | e5b22a9fbeae1489aad86fe9362540fd0e3c578b | |
parent | d46b8fa544d7275d85c42f085478cc74972e7fc8 (diff) | |
download | guix-185a8ced2a1bae0b2ba674db9c0185185737fe39.tar.gz guix-185a8ced2a1bae0b2ba674db9c0185185737fe39.zip |
gnu: Add texlive-quantikz.
* gnu/packages/tex.scm (texlive-quantikz): 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 64a1a25609..b28ad45fed 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -3615,6 +3615,24 @@ typeset quantum circuits, using @code{xy-pic} package, offering macros designed to help users generate circuits.") (license license:gpl2))) +(define-public texlive-quantikz + (package + (name "texlive-quantikz") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/quantikz/" "tex/latex/quantikz/") + (base32 + "1pa9ry2sn70sjkxqj0f569148xfc5iq77rw0sjnd344m3xsz38db"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/quantikz") + (synopsis "Draw quantum circuit diagrams") + (description + "The purpose of this package is to extend TikZ with the functionality for +drawing quantum circuit diagrams.") + (license license:cc-by4.0))) + (define-public texlive-amiri (package (name "texlive-amiri") |