me
/
guix
Archived
1
0
Fork 0

gnu: Add texlive-doclicense.

* gnu/packages/tex.scm (texlive-doclicense): New variable.
master
Nicolas Goaziou 2023-08-29 15:48:15 +02:00
parent 54fd909bfe
commit 827d4ac773
No known key found for this signature in database
GPG Key ID: DA00B4F048E92F2D
1 changed files with 22 additions and 0 deletions

View File

@ -79211,6 +79211,28 @@ a more vanilla-flavoured way of typesetting base sequences, the user might
consider the @code{seqsplit} package.") consider the @code{seqsplit} package.")
(license license:lppl))) (license license:lppl)))
(define-public texlive-doclicense
(package
(name "texlive-doclicense")
(version (number->string %texlive-revision))
(source (texlive-origin
name version
(list "doc/latex/doclicense/"
"source/latex/doclicense/"
"tex/latex/doclicense/")
(base32
"0glx7cfhncns0kkz08i9w1kprn6xynbsw7155vkmhfwkxa4xb1an")))
(outputs '("out" "doc"))
(build-system texlive-build-system)
(home-page "https://ctan.org/pkg/doclicense")
(synopsis "Support for putting documents under a license")
(description
"This package allows you to put your document under a license and include
a link to read about the license or include an icon or image of the license.
Currently, only Creative Commons is supported, but this package is designed to
handle all kinds of licenses.")
(license (list license:cc0 license:lppl1.3c))))
;;; ;;;
;;; 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