mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-12 14:16:55 -05:00
gnu: Add texlive-ifmtarg.
* gnu/packages/tex.scm (texlive-ifmtarg): New variable.
This commit is contained in:
parent
a202baf8e9
commit
5874f8a051
1 changed files with 28 additions and 0 deletions
|
@ -8113,6 +8113,34 @@ (define-public texlive-morefloats
|
|||
floats merely delays the arrival of the inevitable error message.")
|
||||
(license license:lppl1.3c+))))
|
||||
|
||||
(define-public texlive-ifmtarg
|
||||
(let ((template (simple-texlive-package
|
||||
"texlive-ifmtarg"
|
||||
(list "/doc/latex/ifmtarg/"
|
||||
"/source/latex/ifmtarg/")
|
||||
(base32
|
||||
"0cwjn4bhq9zyfxr1595hgyc1d7rcsf9lva55x98q81xy5xrrmrb2"))))
|
||||
(package
|
||||
(inherit template)
|
||||
(arguments
|
||||
(substitute-keyword-arguments (package-arguments template)
|
||||
((#:tex-directory _ '())
|
||||
"latex/ifmtarg")
|
||||
((#:build-targets _ '())
|
||||
''("ifmtarg.ins"))
|
||||
((#:tex-format _ "latex") "latex")
|
||||
((#:phases phases)
|
||||
`(modify-phases ,phases
|
||||
(add-after 'unpack 'chdir
|
||||
(lambda _ (chdir "source/latex/ifmtarg")))))))
|
||||
(inputs
|
||||
`(("texlive-latex-filecontents" ,texlive-latex-filecontents)))
|
||||
(home-page "https://www.ctan.org/pkg/ifmtarg")
|
||||
(synopsis "If-then-else command for processing potentially empty arguments")
|
||||
(description "This package provides a command for the LaTeX programmer for
|
||||
testing whether an argument is empty.")
|
||||
(license license:lppl1.3c+))))
|
||||
|
||||
(define-public texlive-kastrup
|
||||
(package
|
||||
(name "texlive-kastrup")
|
||||
|
|
Loading…
Reference in a new issue