mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 13:58:15 -05:00
gnu: Add texlive-options.
* gnu/packages/tex.scm (texlive-options): New variable.
This commit is contained in:
parent
d51b17c602
commit
410d2bc24f
1 changed files with 21 additions and 0 deletions
|
@ -90909,6 +90909,27 @@ (define-public texlive-optional
|
|||
included in optional sections (whether they're included or not).")
|
||||
(license license:lppl)))
|
||||
|
||||
(define-public texlive-options
|
||||
(package
|
||||
(name "texlive-options")
|
||||
(version (number->string %texlive-revision))
|
||||
(source (texlive-origin
|
||||
name version
|
||||
(list "doc/latex/options/" "tex/latex/options/")
|
||||
(base32
|
||||
"06qbmf3z0wxjgr2zrmymk271nxssvwlig6x2i283fvl2m73sw683")))
|
||||
(outputs '("out" "doc"))
|
||||
(build-system texlive-build-system)
|
||||
(home-page "https://ctan.org/pkg/options")
|
||||
(synopsis
|
||||
"Provides convenient key-value options for LaTeX package writers")
|
||||
(description
|
||||
"The options package provides easy to use key-value options for LaTeX package
|
||||
writers. It has a similar interface as pgfkeys with path options but comes
|
||||
with more built-in data types and more convenient support for families and
|
||||
searching.")
|
||||
(license license:lppl1.3+)))
|
||||
|
||||
;;;
|
||||
;;; Avoid adding new packages to the end of this file. To reduce the chances
|
||||
;;; of a merge conflict, place them above by existing packages with similar
|
||||
|
|
Loading…
Reference in a new issue