diff options
| -rw-r--r-- | gnu/packages/ghostscript.scm | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/gnu/packages/ghostscript.scm b/gnu/packages/ghostscript.scm index 04aac9d94ee..dd6c576cdf1 100644 --- a/gnu/packages/ghostscript.scm +++ b/gnu/packages/ghostscript.scm | |||
| @@ -214,3 +214,23 @@ Ghostscript. It currently includes the 35 standard PostScript fonts.") | |||
| 214 | (license license:gpl2) | 214 | (license license:gpl2) |
| 215 | (home-page "http://sourceforge.net/projects/gs-fonts/"))) | 215 | (home-page "http://sourceforge.net/projects/gs-fonts/"))) |
| 216 | 216 | ||
| 217 | (define-public libspectre | ||
| 218 | (package | ||
| 219 | (name "libspectre") | ||
| 220 | (version "0.2.7") | ||
| 221 | (source (origin | ||
| 222 | (method url-fetch) | ||
| 223 | (uri (string-append "http://libspectre.freedesktop.org/releases/libspectre-" | ||
| 224 | version ".tar.gz")) | ||
| 225 | (sha256 (base32 | ||
| 226 | "1v63lqc6bhhxwkpa43qmz8phqs8ci4dhzizyy16d3vkb20m846z8")))) | ||
| 227 | (build-system gnu-build-system) | ||
| 228 | (inputs `(("ghostscript" ,ghostscript) | ||
| 229 | ("pkg-config" ,pkg-config))) | ||
| 230 | (synopsis "postscript rendering library") | ||
| 231 | (description | ||
| 232 | "libspectre is a small library for rendering Postscript documents. | ||
| 233 | It provides a convenient easy to use API for handling and rendering | ||
| 234 | Postscript documents.") | ||
| 235 | (license license:gpl2+) | ||
| 236 | (home-page "http://www.freedesktop.org/wiki/Software/libspectre"))) | ||
