[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
22/66: gnu: Add texlive-hitex-bin.
From: |
guix-commits |
Subject: |
22/66: gnu: Add texlive-hitex-bin. |
Date: |
Wed, 29 May 2024 10:17:20 -0400 (EDT) |
ngz pushed a commit to branch tex-team
in repository guix.
commit 8dadc23a86c9c082687b73e8fcd8c2689d9ebb94
Author: Nicolas Goaziou <mail@nicolasgoaziou.fr>
AuthorDate: Mon May 27 18:54:32 2024 +0200
gnu: Add texlive-hitex-bin.
* gnu/packages/tex.scm (texlive-hitex-bin): New variable.
(texlive-hitex)[propagated-inputs]: Add TEXLIVE-HITEX-BIN.
Change-Id: I1d116623970d60261b366c5c48e05b2dcf53fbde
---
gnu/packages/tex.scm | 30 ++++++++++++++++++++++++++++++
1 file changed, 30 insertions(+)
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm
index e1daac55b0..91b3e570f0 100644
--- a/gnu/packages/tex.scm
+++ b/gnu/packages/tex.scm
@@ -16758,6 +16758,7 @@ Indian Type Foundry, with support for LaTeX and
pdfLaTeX.")
texlive-etex
texlive-everyshi
texlive-firstaid
+ texlive-hitex-bin
texlive-hyphen-base
texlive-knuth-lib
texlive-l3backend
@@ -16784,6 +16785,35 @@ TeX to format a document for nearly-arbitrary values
of @code{\\hsize} and
@code{\\vsize}.")
(license license:x11)))
+(define-public texlive-hitex-bin
+ (package
+ (inherit texlive-bin)
+ (name "texlive-hitex-bin")
+ (arguments
+ (substitute-keyword-arguments (package-arguments texlive-bin)
+ ((#:configure-flags flags)
+ #~(cons* "--disable-web2c"
+ "--enable-hitex"
+ (delete "--disable-hitex"
+ (delete "--enable-web2c" #$flags))))
+ ((#:phases phases)
+ #~(modify-phases #$phases
+ (replace 'install
+ (lambda _
+ (with-directory-excursion "texk/web2c"
+ (let ((bin (string-append #$output "/bin"))
+ (files '("hishrink" "histretch" "hitex")))
+ (for-each (lambda (f) (invoke "make" f)) files)
+ (for-each (lambda (f) (install-file f bin)) files)
+ (with-directory-excursion bin
+ (symlink "hitex" "hilatex"))))))))))
+ (native-inputs (list pkg-config))
+ (home-page (package-home-page texlive-hitex))
+ (synopsis "Binaries for @code{texlive-hitex}")
+ (description
+ "This package provides the binaries for @code{texlive-hitex}.")
+ (license (package-license texlive-hitex))))
+
(define-public texlive-hitszbeamer
(package
(name "texlive-hitszbeamer")
- 14/66: gnu: Add texlive-patgen-bin., (continued)
- 14/66: gnu: Add texlive-patgen-bin., guix-commits, 2024/05/29
- 12/66: gnu: Add texlive-fontware-bin., guix-commits, 2024/05/29
- 13/66: gnu: Add texlive-texware-bin., guix-commits, 2024/05/29
- 08/66: gnu: texlive-bin: Minimize build surface., guix-commits, 2024/05/29
- 11/66: gnu: Add texlive-omegaware-bin., guix-commits, 2024/05/29
- 17/66: gnu: Add texlive-bibtex-bin., guix-commits, 2024/05/29
- 18/66: gnu: Add texlive-dvicopy-bin., guix-commits, 2024/05/29
- 21/66: gnu: Add texlive-aleph-bin., guix-commits, 2024/05/29
- 15/66: gnu: Add texlive-uptex-bin., guix-commits, 2024/05/29
- 19/66: gnu: Add texlive-dvipdfmx-bin., guix-commits, 2024/05/29
- 22/66: gnu: Add texlive-hitex-bin.,
guix-commits <=
- 23/66: gnu: Add texlive-afm2pl-bin., guix-commits, 2024/05/29
- 16/66: gnu: Add texlive-ptex-bin., guix-commits, 2024/05/29
- 20/66: gnu: Add texlive-xetex-bin., guix-commits, 2024/05/29
- 24/66: gnu: Add texlive-m-tx-bin., guix-commits, 2024/05/29
- 26/66: gnu: Add texlive-gregoriotex-bin., guix-commits, 2024/05/29
- 27/66: gnu: Add texlive-pmx-bin., guix-commits, 2024/05/29
- 28/66: gnu: Add texlive-velthuis-bin., guix-commits, 2024/05/29
- 31/66: gnu: Add texlive-dvips-bin., guix-commits, 2024/05/29
- 32/66: gnu: Add texlive-psutils-bin., guix-commits, 2024/05/29
- 25/66: gnu: Add texlive-autosp-bin., guix-commits, 2024/05/29