diff options
| author | Andreas Enge <andreas@enge.fr> | 2013-05-05 11:23:13 +0200 |
|---|---|---|
| committer | Andreas Enge <andreas@enge.fr> | 2013-05-05 11:23:13 +0200 |
| commit | c5ea1201fbc7dbabe75d61ad3f9b898b7f7e86f5 (patch) | |
| tree | 1573cc551eb958f12a4f2bd3f71d0e00ea388f24 | |
| parent | e0eb886dcee16cb2cb26a0d0b1e73a5b82547c7c (diff) | |
gnu: Add GNU gv.
* gnu/packages/ghostscript.scm (gv): New variable.
| -rw-r--r-- | gnu/packages/ghostscript.scm | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/gnu/packages/ghostscript.scm b/gnu/packages/ghostscript.scm index 5b0e4ec6ed2..6781ffecdf6 100644 --- a/gnu/packages/ghostscript.scm +++ b/gnu/packages/ghostscript.scm | |||
| @@ -216,3 +216,29 @@ library.") | |||
| 216 | Ghostscript. It currently includes the 35 standard PostScript fonts.") | 216 | Ghostscript. It currently includes the 35 standard PostScript fonts.") |
| 217 | (license license:gpl2) | 217 | (license license:gpl2) |
| 218 | (home-page "http://sourceforge.net/projects/gs-fonts/"))) | 218 | (home-page "http://sourceforge.net/projects/gs-fonts/"))) |
| 219 | |||
| 220 | (define-public gv | ||
| 221 | (package | ||
| 222 | (name "gv") | ||
| 223 | (version "3.7.4") | ||
| 224 | (source (origin | ||
| 225 | (method url-fetch) | ||
| 226 | (uri (string-append "mirror://gnu/gv/gv-" | ||
| 227 | version ".tar.gz")) | ||
| 228 | (sha256 (base32 | ||
| 229 | "0q8s43z14vxm41pfa8s5h9kyyzk1fkwjhkiwbf2x70alm6rv6qi1")))) | ||
| 230 | (build-system gnu-build-system) | ||
| 231 | (propagated-inputs `(("ghostscript" ,ghostscript))) | ||
| 232 | (inputs `(("libx11" ,libx11) | ||
| 233 | ("libxaw3d" ,libxaw3d) | ||
| 234 | ("libxinerama" ,libxinerama) | ||
| 235 | ("libxpm" ,libxpm) | ||
| 236 | ("pkg-config" ,pkg-config) | ||
| 237 | ("zlib" ,zlib))) | ||
| 238 | (synopsis "postscript and pdf viewer for x") | ||
| 239 | (description | ||
| 240 | "GNU gv allows to view and navigate through PostScript and PDF documents | ||
| 241 | on an X display by providing a graphical user interface for the Ghostscript | ||
| 242 | interpreter.") | ||
| 243 | (license license:gpl3+) | ||
| 244 | (home-page "http://www.gnu.org/software/gv/"))) | ||
