From 827d4ac7733d816e2aa38dd314273ed6a1829dda Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Tue, 29 Aug 2023 15:48:15 +0200 Subject: [PATCH] gnu: Add texlive-doclicense. * gnu/packages/tex.scm (texlive-doclicense): New variable. --- gnu/packages/tex.scm | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index ac71149b93..f4985e9e26 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -79211,6 +79211,28 @@ a more vanilla-flavoured way of typesetting base sequences, the user might consider the @code{seqsplit} package.") (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 ;;; of a merge conflict, place them above by existing packages with similar