mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-07 11:54:33 -05:00
gnu: texlive-ifmtarg: Fix build.
* gnu/packages/tex.scm (texlive-ifmtarg): Remove `simple-texlive-package' call. Add missing location.
This commit is contained in:
parent
0bea37aae7
commit
626d67e657
1 changed files with 21 additions and 22 deletions
|
@ -11134,28 +11134,27 @@ (define-public texlive-morefloats
|
||||||
(license license:lppl1.3c+))))
|
(license license:lppl1.3c+))))
|
||||||
|
|
||||||
(define-public texlive-ifmtarg
|
(define-public texlive-ifmtarg
|
||||||
(let ((template (simple-texlive-package
|
|
||||||
"texlive-ifmtarg"
|
|
||||||
(list "/doc/latex/ifmtarg/"
|
|
||||||
"/source/latex/ifmtarg/")
|
|
||||||
(base32
|
|
||||||
"0cwjn4bhq9zyfxr1595hgyc1d7rcsf9lva55x98q81xy5xrrmrb2"))))
|
|
||||||
(package
|
(package
|
||||||
(inherit template)
|
(name "texlive-ifmtarg")
|
||||||
|
(version (number->string %texlive-revision))
|
||||||
|
(source (texlive-origin
|
||||||
|
name version
|
||||||
|
(list "doc/latex/ifmtarg/" "source/latex/ifmtarg/"
|
||||||
|
"tex/latex/ifmtarg/")
|
||||||
|
(base32
|
||||||
|
"19bfi12j5ra19k6vjd1q5fjsm68vipa7ida7pg9pf15l5pxwbgqz")))
|
||||||
|
(outputs '("out" "doc"))
|
||||||
|
(build-system texlive-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
(substitute-keyword-arguments (package-arguments template)
|
(list #:tex-format "latex"))
|
||||||
((#:tex-directory _ '())
|
(native-inputs
|
||||||
"latex/ifmtarg")
|
|
||||||
((#:build-targets _ '())
|
|
||||||
''("ifmtarg.ins"))
|
|
||||||
((#:tex-format _ "latex") "latex")))
|
|
||||||
(inputs
|
|
||||||
(list texlive-filecontents))
|
(list texlive-filecontents))
|
||||||
(home-page "https://www.ctan.org/pkg/ifmtarg")
|
(home-page "https://ctan.org/pkg/ifmtarg")
|
||||||
(synopsis "If-then-else command for processing potentially empty arguments")
|
(synopsis "If-then-else command for processing potentially empty arguments")
|
||||||
(description "This package provides a command for the LaTeX programmer for
|
(description
|
||||||
testing whether an argument is empty.")
|
"This package provides a command for the LaTeX programmer for testing
|
||||||
(license license:lppl1.3c+))))
|
whether an argument is empty.")
|
||||||
|
(license license:lppl1.3c+)))
|
||||||
|
|
||||||
(define-public texlive-pagenote
|
(define-public texlive-pagenote
|
||||||
(let ((template (simple-texlive-package
|
(let ((template (simple-texlive-package
|
||||||
|
|
Loading…
Reference in a new issue