gnu: Add texlive-bibcop.

* gnu/packages/tex.scm (texlive-bibcop): New variable.
This commit is contained in:
Nicolas Goaziou 2023-08-17 19:40:13 +02:00
parent 385eae4804
commit 991fb27cf1
No known key found for this signature in database
GPG key ID: DA00B4F048E92F2D

View file

@ -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")