me
/
guix
Archived
1
0
Fork 0

gnu: Add texlive-drv.

* gnu/packages/tex.scm (texlive-drv): New variable.
Nicolas Goaziou 2023-06-19 11:06:17 +02:00
parent f08a918e2b
commit 40ba14a0e0
No known key found for this signature in database
GPG Key ID: DA00B4F048E92F2D
1 changed files with 19 additions and 0 deletions

View File

@ -4873,6 +4873,25 @@ implementation is output device independent, and made very simple by relying
on @code{everypage}.")
(license license:lppl1.3+)))
(define-public texlive-drv
(package
(name "texlive-drv")
(version (number->string %texlive-revision))
(source (texlive-origin
name version
(list "doc/metapost/drv/" "metapost/drv/")
(base32
"0vjc9x9xa50zzzc3m2csj9x0gqwcamhyqz1xkdbkqwkcy8rfpnlh")))
(outputs '("out" "doc"))
(build-system texlive-build-system)
(home-page "https://ctan.org/pkg/drv")
(synopsis "Derivation trees with MetaPost")
(description
"This package provides a set of MetaPost macros for typesetting
derivation trees (such as used in sequent calculus, type inference,
programming language semantics...).")
(license license:lppl)))
(define-public texlive-enctex
(package
(name "texlive-enctex")