gnu: texlive-bigintcalc: Refresh package definition.

* gnu/packages/tex.scm (texlive-bigintcalc): Remove SIMPLE-TEXLIVE-PACKAGE
call.
This commit is contained in:
Nicolas Goaziou 2023-05-15 23:44:09 +02:00
parent 0c45eb5be8
commit f61ae4a417
No known key found for this signature in database
GPG key ID: DA00B4F048E92F2D

View file

@ -9495,30 +9495,26 @@ (define-public texlive-atbegshi
(define-deprecated-package texlive-generic-atbegshi texlive-atbegshi) (define-deprecated-package texlive-generic-atbegshi texlive-atbegshi)
(define-public texlive-bigintcalc (define-public texlive-bigintcalc
(let ((template (simple-texlive-package (package
"texlive-bigintcalc" (name "texlive-bigintcalc")
(list "doc/latex/bigintcalc/" (version (number->string %texlive-revision))
"source/latex/bigintcalc/" (source (texlive-origin
"tex/generic/bigintcalc/") name version
(base32 (list "doc/latex/bigintcalc/"
"1cyv4mcvx83ab782l6h2f86a63ipm845r7hv1m6f1z2336vy7rc5")))) "source/latex/bigintcalc/"
(package "tex/generic/bigintcalc/")
(inherit template) (base32
(outputs '("out" "doc")) "1cyv4mcvx83ab782l6h2f86a63ipm845r7hv1m6f1z2336vy7rc5")))
(arguments (outputs '("out" "doc"))
(substitute-keyword-arguments (package-arguments template) (build-system texlive-build-system)
((#:tex-directory _ '()) (propagated-inputs
"generic/bigintcalc") (list texlive-pdftexcmds))
((#:build-targets _ '()) (home-page "https://ctan.org/pkg/bigintcalc")
#~(list "bigintcalc.dtx")))) (synopsis "Integer calculations on very large numbers")
(propagated-inputs (description
(list texlive-pdftexcmds)) "This package provides expandable arithmetic operations with big integers
(home-page "https://www.ctan.org/pkg/bigintcalc") that can exceed TeX's number limits.")
(synopsis "Integer calculations on very large numbers") (license license:lppl1.3+)))
(description
"This package provides expandable arithmetic operations with big
integers that can exceed TeX's number limits.")
(license license:lppl1.3c+))))
(define-deprecated-package texlive-generic-bigintcalc texlive-bigintcalc) (define-deprecated-package texlive-generic-bigintcalc texlive-bigintcalc)