From 991fb27cf1ec5e73c8f507ff1e92ca7f6575611e Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Thu, 17 Aug 2023 19:40:13 +0200 Subject: [PATCH] gnu: Add texlive-bibcop. * gnu/packages/tex.scm (texlive-bibcop): New variable. --- gnu/packages/tex.scm | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 4e4e296415..8b5225f64e 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -3285,6 +3285,34 @@ (define-public texlive-bibarts bibliography without using MakeIndex or BibTeX.") (license license:gpl3+))) +(define-public texlive-bibcop + (package + (name "texlive-bibcop") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/bibtex/bibcop/" + "doc/man/man1/bibcop.1" + "doc/man/man1/bibcop.man1.pdf" + "scripts/bibcop/" + "source/bibtex/bibcop/" + "tex/latex/bibcop/") + (base32 + "0w8n51ksff3b4nfx0ggnh00jhsdh1zg25hijxmpsq0z0wgazai9b"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (arguments (list #:link-scripts #~(list "bibcop.pl"))) + (inputs (list perl)) + (propagated-inputs (list texlive-iexec texlive-pgfopts)) + (home-page "https://ctan.org/pkg/bibcop") + (synopsis "Style checker for .bib files") + (description + "This LaTeX package checks the quality of your @file{.bib} file and emits +warning messages if any issues are found. For this, the TeX processor must be +run with the @samp{--shell-escape} option. @command{bibcop} can also be used +as a standalone command line tool.") + (license license:expat))) + (define-public texlive-bibleref (package (name "texlive-bibleref")