From db8e0bb57ea2462e68d9dc1fc7bc3676c788d67d Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Tue, 29 Aug 2023 15:58:08 +0200 Subject: [PATCH] gnu: Add texlive-pdfwin. * gnu/packages/tex.scm (texlive-pdfwin): New variable. --- gnu/packages/tex.scm | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index f26071e9f1..b799cf03de 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -91992,6 +91992,24 @@ geometrical information to permit references back and forth between source and PDF, assuming a conforming editor and PDF viewer.") (license license:lppl))) +(define-public texlive-pdfwin + (package + (name "texlive-pdfwin") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/pdfwin/" "tex/latex/pdfwin/") + (base32 + "0n89nl0layrjhz79jr7zsnbz5kzik1b2ha71npw3c5qpc2mvrrhk"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/pdfwin") + (synopsis "Customizable windows for screen viewing of TeX documents") + (description + "This package provides customizable windows for screen viewing of TeX +documents.") + (license license:lppl1.2+))) + ;;; ;;; 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