diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-16 12:16:54 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-16 12:16:54 +0200 |
commit | 3519d2a5793a23fafb6f33b83800f6d60a3cff38 (patch) | |
tree | 388597c0224a2d1ddb3c4b3e786f93bc7d5b6361 | |
parent | 582e7815507382c6e872513199fa3e744fc0d3ef (diff) | |
download | guix-3519d2a5793a23fafb6f33b83800f6d60a3cff38.tar.gz guix-3519d2a5793a23fafb6f33b83800f6d60a3cff38.zip |
gnu: Add texlive-ifptex.
* gnu/packages/tex.scm (texlive-ifptex): New variable.
-rw-r--r-- | gnu/packages/tex.scm | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index f253c4cbc8..43780ff9da 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -28210,6 +28210,25 @@ between various classes of Unix systems.") (define-deprecated-package texlive-latex-ifplatform texlive-ifplatform) +(define-public texlive-ifptex + (package + (name "texlive-ifptex") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/generic/ifptex/" "tex/generic/ifptex/") + (base32 + "0l5mclz9cwj756ah0nqbiai0b5m9368dz4ykb0ih5irm6cmswdfm"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/ifptex") + (synopsis "Check if the engine is pTeX or one of its derivatives") + (description + "The @code{ifptex} package is a counterpart of @code{ifxetex}, +@code{ifluatex}, etc.@: for the pTeX engine. The @code{ifuptex} package is an +alias to @code{ifptex} provided for backward compatibility.") + (license license:expat))) + (define-public texlive-iftex (package (name "texlive-iftex") |