diff options
author | Marius Bakke <marius@gnu.org> | 2022-07-07 00:44:35 +0200 |
---|---|---|
committer | Marius Bakke <marius@gnu.org> | 2022-07-16 23:25:18 +0200 |
commit | e48746bd92262451f5a9622f232892f9d371f2b1 (patch) | |
tree | 9f533864eba7f3067eeb6e54124a56742424eabf /gnu/packages/ghostscript.scm | |
parent | 1a9a648ce505f7bcf12c9f5ea696da413b386447 (diff) | |
download | guix-e48746bd92262451f5a9622f232892f9d371f2b1.tar.gz |
gnu: lcms: Remove input labels.
* gnu/packages/ghostscript.scm (lcms)[inputs]: Remove labels and reindent.
Diffstat (limited to 'gnu/packages/ghostscript.scm')
-rw-r--r-- | gnu/packages/ghostscript.scm | 43 |
1 files changed, 21 insertions, 22 deletions
diff --git a/gnu/packages/ghostscript.scm b/gnu/packages/ghostscript.scm index 78ac52248e..8fc91be16d 100644 --- a/gnu/packages/ghostscript.scm +++ b/gnu/packages/ghostscript.scm @@ -50,30 +50,29 @@ (define-public lcms (package - (name "lcms") - (version "2.13.1") - (source (origin - (method url-fetch) - (uri (string-append "mirror://sourceforge/lcms/lcms/" - (version-major+minor version) - "/lcms2-" version ".tar.gz")) - - (sha256 (base32 - "121v414bg2zk0fcwx0kigr2l6nxl88nmblfn3gq5lz5jwybffwyl")))) - (build-system gnu-build-system) - (arguments - `(#:configure-flags '("--disable-static"))) - (inputs `(("libjpeg" ,libjpeg-turbo) - ("libtiff" ,libtiff) - ("zlib" ,zlib))) - (synopsis "Little CMS, a small-footprint colour management engine") - (description - "Little CMS is a small-footprint colour management engine, with special + (name "lcms") + (version "2.13.1") + (source (origin + (method url-fetch) + (uri (string-append "mirror://sourceforge/lcms/lcms/" + (version-major+minor version) + "/lcms2-" version ".tar.gz")) + (sha256 + (base32 + "121v414bg2zk0fcwx0kigr2l6nxl88nmblfn3gq5lz5jwybffwyl")))) + (build-system gnu-build-system) + (arguments + '(#:configure-flags '("--disable-static"))) + (inputs + (list libjpeg-turbo libtiff zlib)) + (synopsis "Little CMS, a small-footprint colour management engine") + (description + "Little CMS is a small-footprint colour management engine, with special focus on accuracy and performance. It uses the International Color Consortium standard (ICC), approved as ISO 15076-1.") - (license license:x11) - (home-page "https://www.littlecms.com/") - (properties '((cpe-name . "little_cms_color_engine"))))) + (license license:x11) + (home-page "https://www.littlecms.com/") + (properties '((cpe-name . "little_cms_color_engine"))))) (define-public libpaper (package |