From 0bb96ef044de1cb2578a36313597742e38be168e Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Tue, 29 Aug 2023 15:48:30 +0200 Subject: [PATCH] gnu: Add texlive-draftfigure. * gnu/packages/tex.scm (texlive-draftfigure): New variable. --- gnu/packages/tex.scm | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 84011ef099..9b242699b0 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -79577,6 +79577,25 @@ (define-public texlive-draftcopy @code{draftwatermark} packages.") (license license:lppl))) +(define-public texlive-draftfigure + (package + (name "texlive-draftfigure") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/draftfigure/" + "tex/latex/draftfigure/") + (base32 + "08akqd8hw2f5rybl1yj7gb8jv0z3ipwvr1gc6bz5rk1676vyfwdz"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/draftfigure") + (synopsis "Replace figures with a white box and additional features") + (description + "With this package you can control the outcome of a figure which is set to +draft and modify the display with various options.") + (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