me
/
guix
Archived
1
0
Fork 0

gnu: Add texlive-meetingmins.

* gnu/packages/tex.scm (texlive-meetingmins): New variable.
master
Nicolas Goaziou 2023-08-29 15:55:20 +02:00
parent de8d76feb1
commit 02a6be313e
No known key found for this signature in database
GPG Key ID: DA00B4F048E92F2D
1 changed files with 29 additions and 0 deletions

View File

@ -88549,6 +88549,35 @@ sample presentations using both @file{.tex} files and @file{.rnw} files. The
document class is obviously compatible with both.") document class is obviously compatible with both.")
(license license:lppl1.3+))) (license license:lppl1.3+)))
(define-public texlive-meetingmins
(package
(name "texlive-meetingmins")
(version (number->string %texlive-revision))
(source (texlive-origin
name version
(list "doc/latex/meetingmins/"
"source/latex/meetingmins/"
"tex/latex/meetingmins/")
(base32
"1x5w8iwxhf6cyl5iimrsddfi38ijgydhcg5sh5vb3spzf7dfjl64")))
(outputs '("out" "doc"))
(build-system texlive-build-system)
(arguments
(list #:phases
;; Build process writes files to a sub-directory. Create it first
;; to prevent an error.
#~(modify-phases %standard-phases
(add-before 'build 'fix-build
(lambda _ (mkdir-p "build/samples/"))))))
(home-page "https://ctan.org/pkg/meetingmins")
(synopsis "Format written minutes of meetings")
(description
"The class allows formatting of meeting minutes using @code{\\section}
commands (which provide hierarchical structure). An agenda can also
be produced for distribution prior to the meeting, with user-selected
portions suppressed from printing.")
(license license:lppl1.3+)))
;;; ;;;
;;; Avoid adding new packages to the end of this file. To reduce the chances ;;; Avoid adding new packages to the end of this file. To reduce the chances
;;; of a merge conflict, place them above by existing packages with similar ;;; of a merge conflict, place them above by existing packages with similar