diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2021-01-04 17:09:42 -0500 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2021-01-14 09:02:09 -0500 |
commit | 8d44bb85fef9a8cd7ef86b462ef755431f7a45fd (patch) | |
tree | 5481b4b334d6e97935383708527964a87f771f92 | |
parent | 568729e8219999018aaa231aa38d4688ec51c8ab (diff) | |
download | guix-8d44bb85fef9a8cd7ef86b462ef755431f7a45fd.tar.gz guix-8d44bb85fef9a8cd7ef86b462ef755431f7a45fd.zip |
gnu: texlive-fonts-stmaryrd: Rename to texlive-stmaryrd.
* gnu/packages/tex.scm (texlive-fonts-stmaryrd): Rename to texlive-stmaryrd,
according to the texlive.tlpdb database. Deprecate old package name.
-rw-r--r-- | gnu/packages/tex.scm | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index b381cfde90..704f550c3d 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -5333,9 +5333,9 @@ package supports pdfTeX (pdfLaTeX) and VTeX. With VTeX it is even possible to use this package to insert PostScript files, in addition to PDF files.") (license license:lppl1.3+))) -(define-public texlive-fonts-stmaryrd +(define-public texlive-stmaryrd (package - (name "texlive-fonts-stmaryrd") + (name "texlive-stmaryrd") (version (number->string %texlive-revision)) (source (origin (method svn-fetch) @@ -5366,6 +5366,9 @@ use under LaTeX; the package supports the @code{only} option (provided by the the whole font.") (license license:lppl))) +(define-public texlive-fonts-stmaryrd + (deprecated-package "texlive-fonts-stmaryrd" texlive-stmaryrd)) + (define-public texlive-latex-subfigure (package (name "texlive-latex-subfigure") |