me
/
guix
Archived
1
0
Fork 0

gnu: Add texlive-darkmode.

* gnu/packages/tex.scm (texlive-darkmode): New variable.
master
Nicolas Goaziou 2023-08-29 15:47:14 +02:00
parent 3ed166c0ce
commit 9f1080b79f
No known key found for this signature in database
GPG Key ID: DA00B4F048E92F2D
1 changed files with 22 additions and 0 deletions

View File

@ -77807,6 +77807,28 @@ makes your document more brittle in unexpected ways: for example, when you use
formatting in your section titles. So don't use cybercic unless you need to.") formatting in your section titles. So don't use cybercic unless you need to.")
(license license:expat))) (license license:expat)))
(define-public texlive-darkmode
(package
(name "texlive-darkmode")
(version (number->string %texlive-revision))
(source (texlive-origin
name version
(list "doc/latex/darkmode/"
"source/latex/darkmode/"
"tex/latex/darkmode/")
(base32
"1n21gyqkwmz4hd77v27ziyiqlr2wh4c9br8wnswrkznzkp1lmgky")))
(outputs '("out" "doc"))
(build-system texlive-build-system)
(home-page "https://ctan.org/pkg/darkmode")
(synopsis "General dark mode support for LaTeX documents")
(description
"This package provides an API for template and package developers to create
dynamic color schemes for light- and dark modes. For those unaware: we refer
to dark mode when a document has a dark background with a light font and to
light mode if it has a dark font with a light background.")
(license license:lppl1.3+)))
;;; ;;;
;;; Avoid adding new packages to the end of this file. To reduce the chances ;;; 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 ;;; of a merge conflict, place them above by existing packages with similar