diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-05-15 21:46:34 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-18 18:11:38 +0200 |
commit | a274b064db0d6fd14e053b96fc72664b969da461 (patch) | |
tree | 895f6b26af922e36463ddd5e990092198f2db6eb | |
parent | 63e66af94833adc8b20f9a5bac404056a88915b0 (diff) | |
download | guix-a274b064db0d6fd14e053b96fc72664b969da461.tar.gz guix-a274b064db0d6fd14e053b96fc72664b969da461.zip |
gnu: texlive-ulem: Refresh package definition.
* gnu/packages/tex.scm (texlive-ulem): Remove SIMPLE-TEXLIVE-PACKAGE
call.
-rw-r--r-- | gnu/packages/tex.scm | 26 |
1 files changed, 15 insertions, 11 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 9d7c7391be..4b2cdf01ba 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -9535,19 +9535,23 @@ format.") (define-public texlive-ulem (package - (inherit (simple-texlive-package - "texlive-ulem" - (list "doc/generic/ulem/" "tex/generic/ulem/") - (base32 "0wcfnw5h6lsg2ilvkkf7mns8jgcn0n5sh45iznfsb49pfb4mming") - #:trivial? #t)) - (home-page "https://www.ctan.org/pkg/ulem") - (synopsis "Underline text in TeX") + (name "texlive-ulem") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/generic/ulem/" "tex/generic/ulem/") + (base32 + "0wcfnw5h6lsg2ilvkkf7mns8jgcn0n5sh45iznfsb49pfb4mming"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/ulem") + (synopsis "Package for underlining") (description "The package provides an @code{\\ul} (underline) command which will break -over line ends; this technique may be used to replace @code{\\em} (both in that -form and as the @code{\\emph} command), so as to make output look as if it comes -from a typewriter. The package also offers double and wavy underlining, and -striking out (line through words) and crossing out (/// over words).") +over line ends; this technique may be used to replace @code{\\em} (both in +that form and as the @code{\\emph} command), so as to make output look as if +it comes from a typewriter. The package also offers double and wavy +underlining, and striking out, and crossing out.") (license license:lppl1.3c+))) (define-public texlive-pgf |