summaryrefslogtreecommitdiff
path: root/gnu/packages/ghostscript.scm
diff options
context:
space:
mode:
Diffstat (limited to 'gnu/packages/ghostscript.scm')
-rw-r--r--gnu/packages/ghostscript.scm11
1 files changed, 7 insertions, 4 deletions
diff --git a/gnu/packages/ghostscript.scm b/gnu/packages/ghostscript.scm
index 378ff6b37da..35e637648c1 100644
--- a/gnu/packages/ghostscript.scm
+++ b/gnu/packages/ghostscript.scm
@@ -204,7 +204,7 @@ printing, and psresize, for adjusting page sizes.")
204 "--enable-dynamic" 204 "--enable-dynamic"
205 "--disable-compile-inits" 205 "--disable-compile-inits"
206 (string-append "--with-fontpath=" 206 (string-append "--with-fontpath="
207 (assoc-ref %build-inputs "gs-fonts") 207 (assoc-ref %build-inputs "font-ghostscript")
208 "/share/fonts/type1/ghostscript") 208 "/share/fonts/type1/ghostscript")
209 209
210 ,@(if (%current-target-system) 210 ,@(if (%current-target-system)
@@ -278,7 +278,7 @@ printing, and psresize, for adjusting page sizes.")
278 (inputs 278 (inputs
279 `(("fontconfig" ,fontconfig) 279 `(("fontconfig" ,fontconfig)
280 ("freetype" ,freetype) 280 ("freetype" ,freetype)
281 ("gs-fonts" ,gs-fonts) 281 ("font-ghostscript" ,font-ghostscript)
282 ("jbig2dec" ,jbig2dec) 282 ("jbig2dec" ,jbig2dec)
283 ("libjpeg" ,libjpeg-turbo) 283 ("libjpeg" ,libjpeg-turbo)
284 ("libpaper" ,libpaper) 284 ("libpaper" ,libpaper)
@@ -343,9 +343,9 @@ architecture.")
343 (license license:expat) 343 (license license:expat)
344 (home-page (package-home-page ghostscript)))) 344 (home-page (package-home-page ghostscript))))
345 345
346(define-public gs-fonts 346(define-public font-ghostscript
347 (package 347 (package
348 (name "gs-fonts") 348 (name "font-ghostscript")
349 (version "8.11") 349 (version "8.11")
350 (source (origin 350 (source (origin
351 (method url-fetch) 351 (method url-fetch)
@@ -384,6 +384,9 @@ Ghostscript. It currently includes the 35 standard PostScript fonts.")
384 (license license:gpl2) 384 (license license:gpl2)
385 (home-page "https://sourceforge.net/projects/gs-fonts/"))) 385 (home-page "https://sourceforge.net/projects/gs-fonts/")))
386 386
387(define-public gs-fonts
388 (deprecated-package "gs-fonts" font-ghostscript))
389
387(define-public libspectre 390(define-public libspectre
388 (package 391 (package
389 (name "libspectre") 392 (name "libspectre")