mirror of
git://git.savannah.gnu.org/guix.git
synced 2023-12-14 03:33:07 +01:00
gnu: Add texlive-latex-bussproofs.
* gnu/packages/tex.scm (texlive-latex-bussproofs): New variable.
This commit is contained in:
parent
fb3df20116
commit
da73727f1a
1 changed files with 26 additions and 0 deletions
|
@ -8724,6 +8724,32 @@ an arbitrary point. Various options allow complete control over spacing,
|
|||
styles of inference rules, placement of labels, etc.")
|
||||
(license license:lppl1.3+)))
|
||||
|
||||
(define-public texlive-latex-bussproofs
|
||||
(let ((template (simple-texlive-package
|
||||
"texlive-latex-bussproofs"
|
||||
(list "/doc/latex/bussproofs/"
|
||||
"/tex/latex/bussproofs/")
|
||||
(base32
|
||||
"1gb8y9g89fqw1kix4d2vb7mj440vlb8hnpsa3jqpk9yicndwcyk6"))))
|
||||
(package
|
||||
(inherit template)
|
||||
(arguments
|
||||
(substitute-keyword-arguments (package-arguments template)
|
||||
((#:tex-directory _ '())
|
||||
"latex/bussproofs")
|
||||
((#:build-targets _ '())
|
||||
''()) ; "bussproofs.sty"
|
||||
((#:phases phases)
|
||||
`(modify-phases ,phases
|
||||
(add-after 'unpack 'chdir
|
||||
(lambda _ (chdir "tex/latex/bussproofs")))))))
|
||||
(home-page "https://www.math.ucsd.edu/~sbuss/ResearchWeb/bussproofs/index.html")
|
||||
(synopsis "Formal proofs in the style of sequent calculus")
|
||||
(description
|
||||
"This package provides commands to typeset proof trees in the style of
|
||||
sequent calculus and related systems.")
|
||||
(license license:lppl1.3+))))
|
||||
|
||||
(define-public texlive-eurosym
|
||||
(let ((template (simple-texlive-package
|
||||
"texlive-eurosym"
|
||||
|
|
Loading…
Reference in a new issue