mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-08 07:56:16 -05:00
gnu: Add texlive-pagenote.
* gnu/packages/tex.scm (texlive-pagenote): New variable.
This commit is contained in:
parent
5874f8a051
commit
04cbef14ff
1 changed files with 27 additions and 0 deletions
|
@ -8141,6 +8141,33 @@ (define-public texlive-ifmtarg
|
|||
testing whether an argument is empty.")
|
||||
(license license:lppl1.3c+))))
|
||||
|
||||
(define-public texlive-pagenote
|
||||
(let ((template (simple-texlive-package
|
||||
"texlive-pagenote"
|
||||
(list "/doc/latex/pagenote/"
|
||||
"/source/latex/pagenote/")
|
||||
(base32
|
||||
"0cqfqrfvnzq7ldaf255hcvi8xsfx8h7iha3hs8p9gdi3cfzbcmjm"))))
|
||||
(package
|
||||
(inherit template)
|
||||
(arguments
|
||||
(substitute-keyword-arguments (package-arguments template)
|
||||
((#:tex-directory _ '())
|
||||
"latex/pagenote")
|
||||
((#:build-targets _ '())
|
||||
''("pagenote.ins"))
|
||||
((#:phases phases)
|
||||
`(modify-phases ,phases
|
||||
(add-after 'unpack 'chdir
|
||||
(lambda _ (chdir "source/latex/pagenote")))))))
|
||||
(propagated-inputs
|
||||
`(("texlive-ifmtarg" ,texlive-ifmtarg)))
|
||||
(home-page "https://www.ctan.org/pkg/pagenote")
|
||||
(synopsis "Notes at end of document")
|
||||
(description "The pagenote package provides tagged notes on a separate
|
||||
page (also known as ‘end notes’).")
|
||||
(license license:lppl1.3c+))))
|
||||
|
||||
(define-public texlive-kastrup
|
||||
(package
|
||||
(name "texlive-kastrup")
|
||||
|
|
Loading…
Reference in a new issue