mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
gnu: texlive-latex-psnfss: Ensure that font definition files are installed.
* gnu/packages/tex.scm (texlive-latex-psnfss): Use simple-texlive-package to install font definition files and documentation.
This commit is contained in:
parent
d08f5299e6
commit
73b67eeea4
1 changed files with 19 additions and 23 deletions
|
@ -3336,29 +3336,25 @@ (define-public texlive-latex-cyrillic
|
||||||
(license license:lppl1.3c+)))
|
(license license:lppl1.3c+)))
|
||||||
|
|
||||||
(define-public texlive-latex-psnfss
|
(define-public texlive-latex-psnfss
|
||||||
(package
|
(let ((template (simple-texlive-package
|
||||||
(name "texlive-latex-psnfss")
|
"texlive-latex-psnfss"
|
||||||
(version (number->string %texlive-revision))
|
(list "/doc/latex/psnfss/"
|
||||||
(source (origin
|
"/tex/latex/psnfss/")
|
||||||
(method svn-fetch)
|
(base32
|
||||||
(uri (texlive-ref "latex" "psnfss"))
|
"12p23in2nz1n08hw3m6kf5mcbn9zbhjsvdx0nsb7zcvywbljb9i2")
|
||||||
(file-name (string-append name "-" version "-checkout"))
|
#:trivial? #t)))
|
||||||
(sha256
|
(package
|
||||||
(base32
|
(inherit template)
|
||||||
"1920dcq8613yzprasbg80fh4fcjcidvvl54wkx438nimyxcri7qz"))))
|
(home-page "https://www.ctan.org/pkg/psnfss")
|
||||||
(build-system texlive-build-system)
|
(synopsis "Font support for common PostScript fonts")
|
||||||
(arguments '(#:tex-directory "latex/psnfss"))
|
(description "The PSNFSS collection includes a set of files that
|
||||||
(home-page "https://www.ctan.org/pkg/psnfss")
|
provide a complete working setup of the LaTeX font selection
|
||||||
(synopsis "Font support for common PostScript fonts")
|
scheme (NFSS2) for use with common PostScript fonts. It covers the
|
||||||
(description
|
so-called \"Base\" fonts (which are built into any Level 2 PostScript
|
||||||
"The PSNFSS collection includes a set of files that provide a complete
|
printing device and the Ghostscript interpreter) and a number of free
|
||||||
working setup of the LaTeX font selection scheme (NFSS2) for use with common
|
fonts. It provides font definition files, macros and font metrics.
|
||||||
PostScript fonts. It covers the so-called \"Base\" fonts (which are built
|
The bundle as a whole is part of the LaTeX required set of packages.")
|
||||||
into any Level 2 PostScript printing device and the Ghostscript interpreter)
|
(license license:lppl1.2+))))
|
||||||
and a number of free fonts. It provides font definition files, macros and
|
|
||||||
font metrics. The bundle as a whole is part of the LaTeX required set of
|
|
||||||
packages.")
|
|
||||||
(license license:lppl1.2+)))
|
|
||||||
|
|
||||||
;; For user profiles
|
;; For user profiles
|
||||||
(define-public texlive-base
|
(define-public texlive-base
|
||||||
|
|
Loading…
Reference in a new issue