From f1730efcee1efea4c4702eeb7ed75d958b72c9c3 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Tue, 29 Aug 2023 15:54:52 +0200 Subject: [PATCH] gnu: Add texlive-magicwatermark. * gnu/packages/tex.scm (texlive-magicwatermark): New variable. --- gnu/packages/tex.scm | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 7d9e254864..673b500d92 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -87942,6 +87942,27 @@ preparation.") LuaTeX (@code{pdfliteral} mode) by a hierarchical name system.") (license license:lppl1.3c))) +(define-public texlive-magicwatermark + (package + (name "texlive-magicwatermark") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/magicwatermark/" + "source/latex/magicwatermark/" + "tex/latex/magicwatermark/") + (base32 + "1abi3xvy123alpgv0z7h7gyfj2ynz462vfsxpx0q5pnbv8648y3h"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (native-inputs (list texlive-ctex)) + (home-page "https://ctan.org/pkg/magicwatermark") + (synopsis "Flexible way to set watermarks") + (description + "This package can flexibly set and clear watermarks. All watermark content is +placed inside a TikZ node in the center of the page.") + (license 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