mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-15 15:37:54 -05:00
gnu: texlive-bitset: Refresh package definition.
* gnu/packages/tex.scm (texlive-bitset): Remove SIMPLE-TEXLIVE-PACKAGE call.
This commit is contained in:
parent
f61ae4a417
commit
5e346d44b3
1 changed files with 20 additions and 25 deletions
|
@ -9519,31 +9519,26 @@ (define-public texlive-bigintcalc
|
|||
(define-deprecated-package texlive-generic-bigintcalc texlive-bigintcalc)
|
||||
|
||||
(define-public texlive-bitset
|
||||
(let ((template (simple-texlive-package
|
||||
"texlive-bitset"
|
||||
(list "doc/latex/bitset/"
|
||||
"source/latex/bitset/"
|
||||
"tex/generic/bitset/")
|
||||
(base32
|
||||
"1q7vk5gr5a4vaa3l20j178cg2q7a99rxdiyxhzpx9a6lfqfkjddz"))))
|
||||
(package
|
||||
(inherit template)
|
||||
(outputs '("out" "doc"))
|
||||
(arguments
|
||||
(substitute-keyword-arguments (package-arguments template)
|
||||
((#:tex-directory _ '())
|
||||
"generic/bitset")
|
||||
((#:build-targets _ '())
|
||||
#~(list "bitset.dtx"))))
|
||||
(propagated-inputs
|
||||
(list texlive-bigintcalc texlive-infwarerr texlive-intcalc))
|
||||
(home-page "https://www.ctan.org/pkg/bitset")
|
||||
(synopsis "Handle bit-vector datatype")
|
||||
(description
|
||||
"This package defines and implements the data type bit set, a vector
|
||||
of bits. The size of the vector may grow dynamically. Individual bits
|
||||
can be manipulated.")
|
||||
(license license:lppl1.3c+))))
|
||||
(package
|
||||
(name "texlive-bitset")
|
||||
(version (number->string %texlive-revision))
|
||||
(source (texlive-origin
|
||||
name version
|
||||
(list "doc/latex/bitset/" "source/latex/bitset/"
|
||||
"tex/generic/bitset/")
|
||||
(base32
|
||||
"1q7vk5gr5a4vaa3l20j178cg2q7a99rxdiyxhzpx9a6lfqfkjddz")))
|
||||
(outputs '("out" "doc"))
|
||||
(build-system texlive-build-system)
|
||||
(propagated-inputs
|
||||
(list texlive-bigintcalc texlive-infwarerr texlive-intcalc))
|
||||
(home-page "https://ctan.org/pkg/bitset")
|
||||
(synopsis "Handle bit-vector datatype")
|
||||
(description
|
||||
"This package defines and implements the data type bit set, a vector of
|
||||
bits. The size of the vector may grow dynamically. Individual bits can be
|
||||
manipulated.")
|
||||
(license license:lppl1.3+)))
|
||||
|
||||
(define-deprecated-package texlive-generic-bitset texlive-bitset)
|
||||
|
||||
|
|
Loading…
Reference in a new issue