diff options
author | Leo Famulari <leo@famulari.name> | 2017-05-29 04:43:21 -0400 |
---|---|---|
committer | Leo Famulari <leo@famulari.name> | 2017-06-02 14:13:49 -0400 |
commit | 55af10fb987ce96966850da08f8f8d12691dee63 (patch) | |
tree | 6a485889319d6314a482a3b31910e4d85f95699c /gnu/packages/ghostscript.scm | |
parent | 1c09eb9948fcb5f6cfb85faafe24a8843c119f89 (diff) | |
download | guix-55af10fb987ce96966850da08f8f8d12691dee63.tar guix-55af10fb987ce96966850da08f8f8d12691dee63.tar.gz |
gnu: ijs: Update to 9.21.0 and inherit from ghostscript.
* gnu/packages/ghostscript.scm (ijs): Update to 9.21.0.
[source, version, home-page]: Inherit from ghostscript.
Diffstat (limited to 'gnu/packages/ghostscript.scm')
-rw-r--r-- | gnu/packages/ghostscript.scm | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/gnu/packages/ghostscript.scm b/gnu/packages/ghostscript.scm index 32c2b444d5..e0ae9bab6f 100644 --- a/gnu/packages/ghostscript.scm +++ b/gnu/packages/ghostscript.scm @@ -233,13 +233,8 @@ output file formats and printers.") (define-public ijs (package (name "ijs") - (version "9.14.0") - (source (origin - (method url-fetch) - (uri (string-append "mirror://gnu/ghostscript/gnu-ghostscript-" - version ".tar.xz")) - (sha256 (base32 - "0q4jj41p0qbr4mgcc9q78f5zs8cm1g57wgryhsm2yq4lfslm3ib1")))) + (version (package-version ghostscript)) + (source (package-source ghostscript)) (build-system gnu-build-system) (native-inputs `(("libtool" ,libtool) @@ -269,7 +264,7 @@ output file formats and printers.") provides the reference implementation of the raster printer driver architecture.") (license license:expat) - (home-page "https://www.gnu.org/software/ghostscript/"))) + (home-page (package-home-page ghostscript)))) (define-public gs-fonts (package |