guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

08/25: gnu: lcms: Remove input labels.


From: guix-commits
Subject: 08/25: gnu: lcms: Remove input labels.
Date: Sat, 16 Jul 2022 18:08:28 -0400 (EDT)

mbakke pushed a commit to branch core-updates
in repository guix.

commit e48746bd92262451f5a9622f232892f9d371f2b1
Author: Marius Bakke <marius@gnu.org>
AuthorDate: Thu Jul 7 00:44:35 2022 +0200

    gnu: lcms: Remove input labels.
    
    * gnu/packages/ghostscript.scm (lcms)[inputs]: Remove labels and reindent.
---
 gnu/packages/ghostscript.scm | 43 +++++++++++++++++++++----------------------
 1 file 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



reply via email to

[Prev in Thread] Current Thread [Next in Thread]