[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
22/97: gnu: Add texlive-bibtex-bin.
From: |
guix-commits |
Subject: |
22/97: gnu: Add texlive-bibtex-bin. |
Date: |
Fri, 21 Jun 2024 08:22:52 -0400 (EDT) |
ngz pushed a commit to branch tex-team
in repository guix.
commit be9fd105c0848a1424d9db6dbab214c52bea82a1
Author: Nicolas Goaziou <mail@nicolasgoaziou.fr>
AuthorDate: Mon May 27 16:27:22 2024 +0200
gnu: Add texlive-bibtex-bin.
* gnu/packages/tex.scm (texlive-bibtex-bin): New variable.
(texlive-bibtex)[propagated-inputs]: Add TEXLIVE-BIBTEX-BIN.
Change-Id: Id836d5dfa541e14ca4901701b2674ca76a8f2441
---
gnu/packages/tex.scm | 25 ++++++++++++++++++++++++-
1 file changed, 24 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm
index 8bd7efa44d..252b9c9b70 100644
--- a/gnu/packages/tex.scm
+++ b/gnu/packages/tex.scm
@@ -58783,7 +58783,7 @@ AMS-LaTeX, AMS-TeX, and plain TeX). The distribution
includes Michael Barr's
"0iyaxab3wyhy3nw0id892aklpqf17z1cl85v4m3rjy5nmb8darn9")))
(outputs '("out" "doc"))
(build-system texlive-build-system)
- (propagated-inputs (list texlive-kpathsea))
+ (propagated-inputs (list texlive-bibtex-bin texlive-kpathsea))
(home-page "https://ctan.org/pkg/bibtex")
(synopsis "Process bibliographies for LaTeX")
(description
@@ -58793,6 +58793,29 @@ be specified in the document itself (one often needs a
LaTeX citation-style
package, such as @command{natbib} as well).")
(license license:knuth)))
+(define-public texlive-bibtex-bin
+ (package
+ (inherit texlive-bin)
+ (name "texlive-bibtex-bin")
+ (arguments
+ (substitute-keyword-arguments (package-arguments texlive-bin)
+ ((#:configure-flags flags)
+ #~(delete "--enable-web2c" #$flags))
+ ((#:phases phases)
+ #~(modify-phases #$phases
+ (replace 'install
+ (lambda _
+ (with-directory-excursion "texk/web2c"
+ (invoke "make" "bibtex")
+ (install-file "bibtex"
+ (string-append #$output "/bin")))))))))
+ (native-inputs (list pkg-config))
+ (home-page (package-home-page texlive-bibtex))
+ (synopsis "Binary for @code{texlive-bibtex}")
+ (description
+ "This package provides the binary for @code{texlive-bibtex}.")
+ (license (package-license texlive-bibtex))))
+
(define-public texlive-charissil
(package
(name "texlive-charissil")
- 17/97: gnu: Add texlive-fontware-bin., (continued)
- 17/97: gnu: Add texlive-fontware-bin., guix-commits, 2024/06/21
- 01/97: gnu: texlive-libkpathsea: Fix TEXMFCACHE location., guix-commits, 2024/06/21
- 07/97: gnu: texlive-updmap.cfg: Fix font file creation in $HOME., guix-commits, 2024/06/21
- 08/97: gnu: texlive-context: Fix "context" call., guix-commits, 2024/06/21
- 05/97: gnu: texlive-libkpathsea: Better default values in "texmf.cnf"., guix-commits, 2024/06/21
- 12/97: gnu: texlive-xcjk2uni: Fix build., guix-commits, 2024/06/21
- 10/97: gnu: texlive-bin: Minimize build surface., guix-commits, 2024/06/21
- 15/97: gnu: Add texlive-mfware-bin., guix-commits, 2024/06/21
- 20/97: gnu: Add texlive-uptex-bin., guix-commits, 2024/06/21
- 21/97: gnu: Add texlive-ptex-bin., guix-commits, 2024/06/21
- 22/97: gnu: Add texlive-bibtex-bin.,
guix-commits <=
- 23/97: gnu: Add texlive-dvicopy-bin., guix-commits, 2024/06/21
- 26/97: gnu: Add texlive-aleph-bin., guix-commits, 2024/06/21
- 30/97: gnu: Add texlive-autosp-bin., guix-commits, 2024/06/21
- 32/97: gnu: Add texlive-pmx-bin., guix-commits, 2024/06/21
- 31/97: gnu: Add texlive-gregoriotex-bin., guix-commits, 2024/06/21
- 36/97: gnu: Add texlive-dvips-bin., guix-commits, 2024/06/21
- 34/97: gnu: Add texlive-bibtex8-bin., guix-commits, 2024/06/21
- 37/97: gnu: Add texlive-psutils-bin., guix-commits, 2024/06/21
- 38/97: gnu: Add texlive-tex4ht-bin., guix-commits, 2024/06/21
- 03/97: gnu: Add texlive-source., guix-commits, 2024/06/21