[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
19/73: gnu: Add texlive-bibtex-bin.
From: |
guix-commits |
Subject: |
19/73: gnu: Add texlive-bibtex-bin. |
Date: |
Tue, 4 Jun 2024 16:39:52 -0400 (EDT) |
ngz pushed a commit to branch tex-team
in repository guix.
commit 36ed5f9874edc50d3f1300b2e56b41ce8677dff9
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 280f21aff8..bb13a9d1ac 100644
--- a/gnu/packages/tex.scm
+++ b/gnu/packages/tex.scm
@@ -58755,7 +58755,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
@@ -58765,6 +58765,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")
- 08/73: gnu: Add texlive-libptexenc., (continued)
- 08/73: gnu: Add texlive-libptexenc., guix-commits, 2024/06/04
- 11/73: gnu: texlive-latex-bin: Create symlinks for "latex" variants., guix-commits, 2024/06/04
- 04/73: gnu: texlive-libkpathsea: Use TEXLIVE-SOURCE., guix-commits, 2024/06/04
- 06/73: gnu: texlive-luatex: Set proper default values for "texmfcnf.lua"., guix-commits, 2024/06/04
- 09/73: gnu: texlive-bin: Minimize build surface., guix-commits, 2024/06/04
- 10/73: gnu: tex.scm: Remove completed TODO., guix-commits, 2024/06/04
- 12/73: gnu: Add texlive-mfware-bin., guix-commits, 2024/06/04
- 15/73: gnu: Add texlive-texware-bin., guix-commits, 2024/06/04
- 17/73: gnu: Add texlive-uptex-bin., guix-commits, 2024/06/04
- 13/73: gnu: Add texlive-omegaware-bin., guix-commits, 2024/06/04
- 19/73: gnu: Add texlive-bibtex-bin.,
guix-commits <=
- 23/73: gnu: Add texlive-aleph-bin., guix-commits, 2024/06/04
- 29/73: gnu: Add texlive-pmx-bin., guix-commits, 2024/06/04
- 32/73: gnu: Add texlive-bibtexu-bin., guix-commits, 2024/06/04
- 39/73: gnu: Add texlive-upmendex-bin., guix-commits, 2024/06/04
- 43/73: gnu: Add texlive-vlna-bin., guix-commits, 2024/06/04
- 46/73: gnu: Add texlive-detex-bin., guix-commits, 2024/06/04
- 53/73: gnu: Add texlive-lcdftypetools-bin., guix-commits, 2024/06/04
- 54/73: gnu: Add texlive-lacheck-bin., guix-commits, 2024/06/04
- 63/73: gnu: Add texlive-mflua-bin., guix-commits, 2024/06/04
- 14/73: gnu: Add texlive-fontware-bin., guix-commits, 2024/06/04