diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-13 09:40:55 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-18 18:17:39 +0200 |
commit | d46b8fa544d7275d85c42f085478cc74972e7fc8 (patch) | |
tree | dcd9c96361df4d6cc32527099397c6b58e0fccc3 | |
parent | bcbf90763945eb09885a7c9b605b3ab8e6b2a1f1 (diff) | |
download | guix-d46b8fa544d7275d85c42f085478cc74972e7fc8.tar.gz guix-d46b8fa544d7275d85c42f085478cc74972e7fc8.zip |
gnu: Add texlive-qcircuit.
* gnu/packages/tex.scm (texlive-qcircuit): New variable.
-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 6f1ee2473f..64a1a25609 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -3596,6 +3596,25 @@ duck) showcasing the use of characters from the Mario video games by Nintendo in LaTeX.") (license license:lppl1.3c))) +(define-public texlive-qcircuit + (package + (name "texlive-qcircuit") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/qcircuit/" "tex/latex/qcircuit/") + (base32 + "0gyygba4zv6ncbwailjh9fvwn95d4ckrn2vj2ja089drr0sd8zkq"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/qcircuit") + (synopsis "Macros to generate quantum ciruits") + (description + "The package supports those within the quantum information community who +typeset quantum circuits, using @code{xy-pic} package, offering macros +designed to help users generate circuits.") + (license license:gpl2))) + (define-public texlive-amiri (package (name "texlive-amiri") |