diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-29 16:04:08 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-31 22:07:13 +0200 |
commit | ddbd50a30ea087202149fa4eb9479484103e6ac8 (patch) | |
tree | 614ec5dbf170d420df966361efdf5ae2777872b2 /gnu | |
parent | b686b39cf503bb9fd7215a506f7ac341e7db7482 (diff) | |
download | guix-ddbd50a30ea087202149fa4eb9479484103e6ac8.tar guix-ddbd50a30ea087202149fa4eb9479484103e6ac8.tar.gz |
gnu: Add texlive-upmethodology.
* gnu/packages/tex.scm (texlive-upmethodology): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/tex.scm | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index bd002a3b1e..dd886ee39f 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -99039,6 +99039,28 @@ some simple typesetting commands. To use this package, one should normally run TeX in a terminal.") (license license:lppl1.3c))) +(define-public texlive-upmethodology + (package + (name "texlive-upmethodology") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "bibtex/bst/upmethodology/" + "doc/latex/upmethodology/" + "tex/latex/upmethodology/") + (base32 + "1118xx6bjxj6lzqqf124r1ir0x627z0gyimdvnnscyag5n5jyqfd"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/upmethodology") + (synopsis "Writing specifications such as for UP-based methodologies") + (description + "The bundle allows the user to create Unified Process methodology (UP or RUP) +based documents. The style provides document versioning, document history, +document authors, document validators, specification description, task +management, and several helping macros.") + (license license:lgpl3))) + ;;; ;;; 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 |