Merge remote-tracking branch 'master' into core-updates.
[jackhill/guix/guix.git] / gnu / packages / image.scm
1 ;;; GNU Guix --- Functional package management for GNU
2 ;;; Copyright © 2013, 2017, 2019 Ludovic Courtès <ludo@gnu.org>
3 ;;; Copyright © 2013, 2015, 2016 Andreas Enge <andreas@enge.fr>
4 ;;; Copyright © 2014, 2015, 2016 Mark H Weaver <mhw@netris.org>
5 ;;; Copyright © 2014, 2015 Alex Kost <alezost@gmail.com>
6 ;;; Copyright © 2014, 2016, 2017, 2018, 2019 Ricardo Wurmus <rekado@elephly.net>
7 ;;; Copyright © 2015 Taylan Ulrich Bayırlı/Kammer <taylanbayirli@gmail.com>
8 ;;; Copyright © 2015 Amirouche Boubekki <amirouche@hypermove.net>
9 ;;; Copyright © 2014, 2017 John Darrington <jmd@gnu.org>
10 ;;; Copyright © 2016, 2017, 2018 Leo Famulari <leo@famulari.name>
11 ;;; Copyright © 2016, 2017, 2018, 2019 Efraim Flashner <efraim@flashner.co.il>
12 ;;; Copyright © 2016, 2017, 2018, 2019 Tobias Geerinckx-Rice <me@tobias.gr>
13 ;;; Copyright © 2016 Eric Bavier <bavier@member.fsf.org>
14 ;;; Copyright © 2016, 2017 Arun Isaac <arunisaac@systemreboot.net>
15 ;;; Copyright © 2016, 2017 Kei Kebreau <kkebreau@posteo.net>
16 ;;; Copyright © 2017 ng0 <ng0@n0.is>
17 ;;; Copyright © 2017,2019 Hartmut Goebel <h.goebel@crazy-compilers.com>
18 ;;; Copyright © 2017 Julien Lepiller <julien@lepiller.eu>
19 ;;; Copyright © 2018 Joshua Sierles, Nextjournal <joshua@nextjournal.com>
20 ;;; Copyright © 2018 Fis Trivial <ybbs.daans@hotmail.com>
21 ;;; Copyright © 2018 Pierre Neidhardt <mail@ambrevar.xyz>
22 ;;; Copyright © 2018, 2019 Marius Bakke <mbakke@fastmail.com>
23 ;;; Copyright © 2018 Pierre-Antoine Rouby <contact@parouby.fr>
24 ;;; Copyright © 2018 Alex Vong <alexvong1995@gmail.com>
25 ;;; Copyright © 2018 Rutger Helling <rhelling@mykolab.com>
26 ;;;
27 ;;; This file is part of GNU Guix.
28 ;;;
29 ;;; GNU Guix is free software; you can redistribute it and/or modify it
30 ;;; under the terms of the GNU General Public License as published by
31 ;;; the Free Software Foundation; either version 3 of the License, or (at
32 ;;; your option) any later version.
33 ;;;
34 ;;; GNU Guix is distributed in the hope that it will be useful, but
35 ;;; WITHOUT ANY WARRANTY; without even the implied warranty of
36 ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
37 ;;; GNU General Public License for more details.
38 ;;;
39 ;;; You should have received a copy of the GNU General Public License
40 ;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
41
42 (define-module (gnu packages image)
43 #:use-module (gnu packages)
44 #:use-module (gnu packages algebra)
45 #:use-module (gnu packages assembly)
46 #:use-module (gnu packages autotools)
47 #:use-module (gnu packages boost)
48 #:use-module (gnu packages check)
49 #:use-module (gnu packages curl)
50 #:use-module (gnu packages compression)
51 #:use-module (gnu packages documentation)
52 #:use-module (gnu packages fontutils)
53 #:use-module (gnu packages freedesktop)
54 #:use-module (gnu packages gettext)
55 #:use-module (gnu packages ghostscript)
56 #:use-module (gnu packages gl)
57 #:use-module (gnu packages glib)
58 #:use-module (gnu packages graphics)
59 #:use-module (gnu packages gtk)
60 #:use-module (gnu packages lua)
61 #:use-module (gnu packages man)
62 #:use-module (gnu packages maths)
63 #:use-module (gnu packages mcrypt)
64 #:use-module (gnu packages mp3)
65 #:use-module (gnu packages ncurses)
66 #:use-module (gnu packages perl)
67 #:use-module (gnu packages photo)
68 #:use-module (gnu packages pkg-config)
69 #:use-module (gnu packages python)
70 #:use-module (gnu packages python-xyz)
71 #:use-module (gnu packages sphinx)
72 #:use-module (gnu packages xml)
73 #:use-module (gnu packages xorg)
74 #:use-module (gnu packages qt)
75 #:use-module ((guix licenses) #:prefix license:)
76 #:use-module (guix packages)
77 #:use-module (guix download)
78 #:use-module (guix git-download)
79 #:use-module (guix build-system gnu)
80 #:use-module (guix build-system cmake)
81 #:use-module (guix build-system meson)
82 #:use-module (guix build-system python)
83 #:use-module (guix build-system scons)
84 #:use-module (srfi srfi-1))
85
86 (define-public libpng
87 (package
88 (name "libpng")
89 (version "1.6.37")
90 (source (origin
91 (method url-fetch)
92 (uri (list (string-append "mirror://sourceforge/libpng/libpng16/"
93 version "/libpng-" version ".tar.xz")
94 (string-append
95 "ftp://ftp.simplesystems.org/pub/libpng/png/src"
96 "/libpng16/libpng-" version ".tar.xz")
97 (string-append
98 "ftp://ftp.simplesystems.org/pub/libpng/png/src/history"
99 "/libpng16/libpng-" version ".tar.xz")))
100 (sha256
101 (base32
102 "1jl8in381z0128vgxnvn33nln6hzckl7l7j9nqvkaf1m9n1p0pjh"))))
103 (build-system gnu-build-system)
104 (arguments
105 `(#:configure-flags '("--disable-static")))
106
107 ;; libpng.la says "-lz", so propagate it.
108 (propagated-inputs `(("zlib" ,zlib)))
109
110 (synopsis "Library for handling PNG files")
111 (description
112 "Libpng is the official PNG (Portable Network Graphics) reference
113 library. It supports almost all PNG features and is extensible.")
114 (license license:zlib)
115 (home-page "http://www.libpng.org/pub/png/libpng.html")))
116
117 ;; libpng-apng should be updated when the APNG patch is released:
118 ;; <https://bugs.gnu.org/27556>
119 (define-public libpng-apng
120 (package
121 (name "libpng-apng")
122 (version "1.6.28")
123 (source
124 (origin
125 (method url-fetch)
126 (uri (list (string-append "mirror://sourceforge/libpng/libpng16/"
127 version "/libpng-" version ".tar.xz")
128 (string-append
129 "ftp://ftp.simplesystems.org/pub/libpng/png/src"
130 "/libpng16/libpng-" version ".tar.xz")
131 (string-append
132 "ftp://ftp.simplesystems.org/pub/libpng/png/src/history"
133 "/libpng16/libpng-" version ".tar.xz")))
134 (sha256
135 (base32
136 "0ylgyx93hnk38haqrh8prd3ax5ngzwvjqw5cxw7p9nxmwsfyrlyq"))))
137 (build-system gnu-build-system)
138 (arguments
139 `(#:modules ((guix build gnu-build-system)
140 (guix build utils)
141 (srfi srfi-1))
142 #:phases
143 (modify-phases %standard-phases
144 (add-after 'unpack 'patch-apng
145 (lambda* (#:key inputs #:allow-other-keys)
146 (define (apply-patch file)
147 (invoke "patch" "-p1" "--force"
148 "--input" file))
149 (let ((apng.gz (assoc-ref inputs "apng")))
150 (format #t "Applying APNG patch '~a'...~%"
151 apng.gz)
152 (invoke "sh" "-c"
153 (string-append "gunzip < " apng.gz " > the-patch"))
154 (apply-patch "the-patch")
155 #t)))
156 (add-before 'configure 'no-checks
157 (lambda _
158 (substitute* "Makefile.in"
159 (("^scripts/symbols.chk") "")
160 (("check: scripts/symbols.chk") ""))
161 #t)))))
162 (inputs
163 `(("apng" ,(origin
164 (method url-fetch)
165 (uri
166 (string-append "mirror://sourceforge/libpng-apng/libpng16/"
167 version "/libpng-" version "-apng.patch.gz"))
168 (sha256
169 (base32
170 "0m5nv70n9903x3xzxw9qqc6sgf2rp106ha0x6gix0xf8wcrljaab"))))))
171 (native-inputs
172 `(("libtool" ,libtool)))
173 ;; libpng.la says "-lz", so propagate it.
174 (propagated-inputs
175 `(("zlib" ,zlib)))
176 (synopsis "APNG patch for libpng")
177 (description
178 "APNG (Animated Portable Network Graphics) is an unofficial
179 extension of the APNG (Portable Network Graphics) format.
180 APNG patch provides APNG support to libpng.")
181 (home-page "https://sourceforge.net/projects/libpng-apng/")
182 (license license:zlib)))
183
184 (define-public libpng-1.2
185 (package
186 (inherit libpng)
187 (version "1.2.59")
188 (source
189 (origin
190 (method url-fetch)
191 (uri (list (string-append "mirror://sourceforge/libpng/libpng12/"
192 version "/libpng-" version ".tar.xz")
193 (string-append
194 "ftp://ftp.simplesystems.org/pub/libpng/png/src"
195 "/libpng12/libpng-" version ".tar.xz")
196 (string-append
197 "ftp://ftp.simplesystems.org/pub/libpng/png/src/history"
198 "/libpng12/libpng-" version ".tar.xz")))
199 (sha256
200 (base32
201 "1izw9ybm27llk8531w6h4jp4rk2rxy2s9vil16nwik5dp0amyqxl"))))))
202
203 (define-public pngcrush
204 (package
205 (name "pngcrush")
206 (version "1.8.13")
207 (source (origin
208 (method url-fetch)
209 (uri (string-append "mirror://sourceforge/pmt/pngcrush/"
210 version "/pngcrush-" version "-nolib.tar.xz"))
211 (sha256 (base32
212 "0l43c59d6v9l0g07z3q3ywhb8xb3vz74llv3mna0izk9bj6aqkiv"))))
213 (build-system gnu-build-system)
214 (arguments
215 '(#:tests? #f ; no check target
216 #:phases
217 (modify-phases %standard-phases
218 (replace 'configure
219 (lambda* (#:key inputs outputs #:allow-other-keys)
220 (substitute* "Makefile"
221 (("^(PNG(INC|LIB) = )/usr/local/" line vardef)
222 (string-append vardef (assoc-ref inputs "libpng") "/"))
223 (("^(Z(INC|LIB) = )/usr/local/" line vardef)
224 (string-append vardef (assoc-ref inputs "zlib") "/"))
225 ;; The Makefile is written by hand and not using $PREFIX
226 (("\\$\\(DESTDIR\\)/usr/")
227 (string-append (assoc-ref outputs "out") "/")))
228 #t)))))
229 (inputs
230 `(("libpng" ,libpng)
231 ("zlib" , zlib)))
232 (home-page "https://pmt.sourceforge.io/pngcrush")
233 (synopsis "Utility to compress PNG files")
234 (description "Pngcrush optimizes @acronym{PNG, Portable Network Graphics}
235 images. It can further losslessly compress them by as much as 40%.")
236 (license license:zlib)))
237
238 (define-public pngcrunch
239 ;; This package used to be wrongfully name "pngcrunch".
240 (deprecated-package "pngcrunch" pngcrush))
241
242 (define-public pnglite
243 (let ((commit "11695c56f7d7db806920bd9229b69f230e6ffb38")
244 (revision "1"))
245 (package
246 (name "pnglite")
247 ;; The project was moved from sourceforge to github.
248 ;; The latest version in sourceforge was 0.1.17:
249 ;; https://sourceforge.net/projects/pnglite/files/pnglite/
250 ;; No releases are made in github.
251 (version (git-version "0.1.17" revision commit))
252 (source (origin
253 (method git-fetch)
254 (uri (git-reference
255 (url "https://github.com/dankar/pnglite")
256 (commit commit)))
257 (sha256
258 (base32
259 "1lmmkdxby5b8z9kx3zrpgpk33njpcf2xx8z9bgqag855sjsqbbby"))
260 (file-name (git-file-name name version))))
261 (build-system gnu-build-system)
262 (arguments
263 `(#:tests? #f ; no tests
264 #:phases
265 (modify-phases %standard-phases
266 (delete 'configure)
267 (replace 'build
268 (lambda _
269 ;; common build flags for building shared libraries
270 (let ((cflags '("-O2" "-g" "-fPIC"))
271 (ldflags '("-shared")))
272 (apply invoke
273 `("gcc"
274 "-o" "libpnglite.so"
275 ,@cflags
276 ,@ldflags
277 "pnglite.c"))
278 #t)))
279 (replace 'install
280 (lambda* (#:key outputs #:allow-other-keys)
281 (let* ((out (assoc-ref outputs "out"))
282 (lib (string-append out "/lib/"))
283 (include (string-append out "/include/"))
284 (doc (string-append out "/share/doc/"
285 ,name "-" ,version "/")))
286 (install-file "libpnglite.so" lib)
287 (install-file "pnglite.h" include)
288 (install-file "README.md" doc)
289 #t))))))
290 (inputs `(("zlib" ,zlib)))
291 (home-page "https://github.com/dankar/pnglite")
292 (synopsis "Pretty small png library")
293 (description "A pretty small png library.
294 Currently all documentation resides in @file{pnglite.h}.")
295 (license license:zlib))))
296
297 (define-public libimagequant
298 (package
299 (name "libimagequant")
300 (version "2.12.5")
301 (source
302 (origin
303 (method git-fetch)
304 (uri (git-reference
305 (url "https://github.com/ImageOptim/libimagequant.git")
306 (commit version)))
307 (file-name (git-file-name name version))
308 (sha256
309 (base32 "0cp68w04ja5pv77ssfafsn958w9hh9zb8crrlb5j3gsrcmdc032k"))))
310 (build-system gnu-build-system)
311 (arguments
312 '(#:tests? #f)) ; no check target
313 (home-page "https://pngquant.org/lib/")
314 (synopsis "Image palette quantization library")
315 (description "libimagequant is a small, portable C library for
316 high-quality conversion of RGBA images to 8-bit indexed-color (palette)
317 images. This library can significantly reduces file sizes and powers pngquant
318 and other PNG optimizers.")
319 (license license:gpl3+)))
320
321 (define-public pngquant
322 (package
323 (name "pngquant")
324 (version "2.12.3")
325 (source
326 (origin
327 (method git-fetch)
328 (uri (git-reference
329 (url "https://github.com/kornelski/pngquant.git")
330 (commit version)))
331 (file-name (git-file-name name version))
332 (sha256
333 (base32 "1yiwbcihn4311fpfd568gg8zmmhqwg80jmhbhkb5msiipgd9xv33"))))
334 (build-system gnu-build-system)
335 (arguments
336 `(#:test-target "test"
337 #:configure-flags
338 '("--with-openmp" "--with-lcms2")))
339 (native-inputs
340 `(("pkg-config" ,pkg-config)))
341 (inputs
342 `(("libpng" ,libpng)
343 ("zlib" , zlib)
344 ("lcms" ,lcms)
345 ("libimagequant" ,libimagequant)))
346 (home-page "https://pngquant.org/")
347 (synopsis "Utility and library for lossy compressing PNG images")
348 (description "pngquant is a PNG compressor that significantly reduces file
349 sizes by converting images to a more efficient 8-bit PNG format with alpha
350 channel (often 60-80% smaller than 24/32-bit PNG files). Compressed images
351 are fully standards-compliant and are supported by all web browsers and
352 operating systems.
353
354 Features:
355 @enumerate
356 @item High-quality palette generation using a combination of vector
357 quantization algorithms.
358 @item Unique adaptive dithering algorithm that adds less noise to images
359 than the standard Floyd-Steinberg.
360 @item Easy to integrate with shell scripts, GUIs and server-side software.
361 @item Fast mode for real-time processing/large numbers of images.
362 @end enumerate")
363 (license license:gpl3+)))
364
365 (define-public libjpeg
366 (package
367 (name "libjpeg")
368 (version "9c")
369 (source (origin
370 (method url-fetch)
371 (uri (string-append "https://www.ijg.org/files/jpegsrc.v"
372 version ".tar.gz"))
373 (sha256 (base32
374 "08kixcf3a7s9x91174abjnk1xbvj4v8crdc73zi4k9h3jfbm00k5"))))
375 (build-system gnu-build-system)
376 (synopsis "Library for handling JPEG files")
377 (description
378 "Libjpeg implements JPEG image encoding, decoding, and transcoding.
379 JPEG is a standardized compression method for full-color and gray-scale
380 images.
381 It also includes programs that provide conversion between the JPEG format and
382 image files in PBMPLUS PPM/PGM, GIF, BMP, and Targa file formats, as well as
383 lossless JPEG manipulations such as rotation, scaling or cropping:
384 @enumerate
385 @item cjpeg
386 @item djpeg
387 @item jpegtran
388 @item rdjpgcom
389 @item wrjpgcom
390 @end enumerate")
391 (license license:ijg)
392 (home-page "https://www.ijg.org/")))
393
394 (define-public libjpeg-8
395 (package (inherit libjpeg)
396 (version "8d")
397 (source (origin
398 (method url-fetch)
399 (uri (string-append "https://www.ijg.org/files/jpegsrc.v"
400 version ".tar.gz"))
401 (sha256 (base32
402 "1cz0dy05mgxqdgjf52p54yxpyy95rgl30cnazdrfmw7hfca9n0h0"))))))
403
404 (define-public libjxr
405 (package
406 (name "libjxr")
407 (version "1.1")
408 (source (origin
409 ;; We are using the Debian source because CodePlex does not
410 ;; deliver an easily downloadable tarball.
411 (method url-fetch)
412 (uri (string-append "mirror://debian/pool/main/j/jxrlib/jxrlib_"
413 version ".orig.tar.gz"))
414 (sha256
415 (base32
416 "00w3f3cmjsm3fiaxq5mxskmp5rl3mki8psrf9y8s1vqbg237na67"))
417 (patch-flags '("-p1" "--binary"))
418 (patches (search-patches "libjxr-fix-function-signature.patch"
419 "libjxr-fix-typos.patch"))))
420 (build-system gnu-build-system)
421 (arguments
422 '(#:make-flags
423 (list "CC=gcc"
424 ;; A substitute* procedure call would be enough to add the -fPIC
425 ;; flag if there was no file decoding error.
426 ;; The makefile is a "Non-ISO extended-ASCII text, with CRLF line
427 ;; terminators" according to the file(1) utility.
428 (string-append "CFLAGS=-I. -Icommon/include -Iimage/sys -fPIC "
429 "-D__ANSI__ -DDISABLE_PERF_MEASUREMENT -w -O "))
430 #:tests? #f ; no check target
431 #:phases
432 (modify-phases %standard-phases
433 (delete 'configure) ; no configure script
434 (add-after 'build 'build-shared-library
435 (lambda _
436 ;; The Makefile uses optimization level 1, so the same
437 ;; level is used here for consistency.
438 (invoke "gcc" "-shared" "-fPIC" "-O"
439 ;; Common files.
440 "adapthuff.o" "image.o" "strcodec.o" "strPredQuant.o"
441 "strTransform.o" "perfTimerANSI.o"
442 ;; Decoding files.
443 "decode.o" "postprocess.o" "segdec.o" "strdec.o"
444 "strInvTransform.o" "strPredQuantDec.o" "JXRTranscode.o"
445 ;; Encoding files.
446 "encode.o" "segenc.o" "strenc.o" "strFwdTransform.o"
447 "strPredQuantEnc.o"
448 "-o" "libjpegxr.so")
449 (invoke "gcc" "-shared" "-fPIC" "-O"
450 ;; Glue files.
451 "JXRGlue.o" "JXRMeta.o" "JXRGluePFC.o" "JXRGlueJxr.o"
452 ;; Test files.
453 "JXRTest.o" "JXRTestBmp.o" "JXRTestHdr.o" "JXRTestPnm.o"
454 "JXRTestTif.o" "JXRTestYUV.o"
455 "-o" "libjxrglue.so")))
456 ;; The upstream makefile does not include an install phase.
457 (replace 'install
458 (lambda* (#:key outputs #:allow-other-keys)
459 (let* ((out (assoc-ref outputs "out"))
460 (bin (string-append out "/bin"))
461 (lib (string-append out "/lib"))
462 (include (string-append out "/include/jxrlib")))
463 (for-each (lambda (file)
464 (install-file file include)
465 (delete-file file))
466 (append
467 '("jxrgluelib/JXRGlue.h"
468 "jxrgluelib/JXRMeta.h"
469 "jxrtestlib/JXRTest.h"
470 "image/sys/windowsmediaphoto.h")
471 (find-files "common/include" "\\.h$")))
472 (for-each (lambda (file)
473 (install-file file lib)
474 (delete-file file))
475 (find-files "." "\\.(a|so)$"))
476 (for-each (lambda (file)
477 (install-file file bin)
478 (delete-file file))
479 '("JxrDecApp" "JxrEncApp")))
480 #t)))))
481 (synopsis "Implementation of the JPEG XR standard")
482 (description "JPEG XR is an approved ISO/IEC International standard (its
483 official designation is ISO/IEC 29199-2). This library is an implementation of that standard.")
484 (license
485 (license:non-copyleft
486 "file://Makefile"
487 "See the header of the Makefile in the distribution."))
488 (home-page "https://jxrlib.codeplex.com/")))
489
490 (define-public jpegoptim
491 (package
492 (name "jpegoptim")
493 (version "1.4.6")
494 (source (origin
495 (method url-fetch)
496 (uri (string-append "http://www.kokkonen.net/tjko/src/jpegoptim-"
497 version ".tar.gz"))
498 (sha256 (base32
499 "1dss7907fclfl8zsw0bl4qcw0hhz6fqgi3867w0jyfm3q9jfpcc8"))))
500 (build-system gnu-build-system)
501 (inputs `(("libjpeg" ,libjpeg)))
502 (arguments
503 '(#:tests? #f)) ; no tests
504 (synopsis "Optimize JPEG images")
505 (description
506 "jpegoptim provides lossless optimization (based on optimizing
507 the Huffman tables) and \"lossy\" optimization based on setting
508 maximum quality factor.")
509 (license license:gpl2+)
510 (home-page "https://www.kokkonen.net/tjko/projects.html#jpegoptim")))
511
512 (define-public libicns
513 (package
514 (name "libicns")
515 (version "0.8.1")
516 (source (origin
517 (method url-fetch)
518 (uri (string-append
519 "mirror://sourceforge/icns/"
520 "libicns-" version ".tar.gz"))
521 (sha256
522 (base32
523 "1hjm8lwap7bjyyxsyi94fh5817xzqhk4kb5y0b7mb6675xw10prk"))))
524 (build-system gnu-build-system)
525 (inputs
526 `(("libpng" ,libpng)
527 ("jasper" ,jasper)))
528 (arguments
529 `(#:tests? #t)) ; No tests.
530 (home-page "http://icns.sourceforge.net/")
531 (synopsis "Library for handling Mac OS icns resource files")
532 (description
533 "Libicns is a library for the manipulation of Mac OS IconFamily resource
534 type files (ICNS). @command{icns2png} and @command{png2icns} are provided to
535 convert between PNG and ICNS. @command{icns2png} will extract image files from
536 ICNS files under names like \"Foo_48x48x32.png\" useful for installing for use
537 with .desktop files. Additionally, @command{icontainer2png} is provided for
538 extracting icontainer icon files.")
539 (license (list license:lgpl2.1+ ; libicns
540 license:lgpl2.0+ ; src/apidocs.*
541 license:gpl2+)))) ; icns2png, png2icns, icontainer2png
542
543 (define-public libtiff
544 (package
545 (name "libtiff")
546 (version "4.1.0")
547 (source
548 (origin
549 (method url-fetch)
550 (uri (string-append "http://download.osgeo.org/libtiff/tiff-"
551 version ".tar.gz"))
552 (sha256
553 (base32
554 "0d46bdvxdiv59lxnb0xz9ywm8arsr6xsapi5s6y6vnys2wjz6aax"))))
555 (build-system gnu-build-system)
556 (outputs '("out"
557 "doc")) ;1.3 MiB of HTML documentation
558 (arguments
559 ;; Instead of using --docdir, this package has its own --with-docdir.
560 `(#:configure-flags (list (string-append "--with-docdir="
561 (assoc-ref %outputs "doc")
562 "/share/doc/"
563 ,name "-" ,version)
564 "--disable-static")))
565 (inputs `(("zlib" ,zlib)
566 ("libjpeg" ,libjpeg)))
567 (synopsis "Library for handling TIFF files")
568 (description
569 "Libtiff provides support for the Tag Image File Format (TIFF), a format
570 used for storing image data.
571 Included are a library, libtiff, for reading and writing TIFF and a small
572 collection of tools for doing simple manipulations of TIFF images.")
573 (license (license:non-copyleft "file://COPYRIGHT"
574 "See COPYRIGHT in the distribution."))
575 (home-page "http://www.simplesystems.org/libtiff/")))
576
577 (define-public leptonica
578 (package
579 (name "leptonica")
580 (version "1.74.4")
581 (source
582 (origin
583 (method git-fetch)
584 (uri (git-reference
585 (url "https://github.com/DanBloomberg/leptonica.git")
586 (commit version)))
587 (file-name (git-file-name name version))
588 (sha256
589 (base32 "0sfg1ky0lghlq7xx0qii5167bim0wwfnnr83dl4skbj9awyvjiwi"))))
590 (build-system gnu-build-system)
591 (native-inputs
592 `(("gnuplot" ,gnuplot) ;needed for test suite
593 ("autoconf" ,autoconf)
594 ("automake" ,automake)
595 ("libtool" ,libtool)
596 ("pkg-config" ,pkg-config)))
597 (inputs
598 `(("giflib" ,giflib)
599 ("libjpeg" ,libjpeg)
600 ("libpng" ,libpng)
601 ("libtiff" ,libtiff)
602 ("libwebp" ,libwebp)))
603 (propagated-inputs
604 ;; Linking a program with leptonica also requires these.
605 `(("openjpeg" ,openjpeg)
606 ("zlib" ,zlib)))
607 (arguments
608 '(#:phases
609 (modify-phases %standard-phases
610 (add-after 'unpack 'patch-reg-wrapper
611 (lambda _
612 (substitute* "prog/reg_wrapper.sh"
613 ((" /bin/sh ")
614 (string-append " " (which "sh") " "))
615 (("which gnuplot")
616 "true"))
617 #t)))))
618 (home-page "http://www.leptonica.com/")
619 (synopsis "Library and tools for image processing and analysis")
620 (description
621 "Leptonica is a C library and set of command-line tools for efficient
622 image processing and image analysis operations. It supports rasterop, affine
623 transformations, binary and grayscale morphology, rank order, and convolution,
624 seedfill and connected components, image transformations combining changes in
625 scale and pixel depth, and pixelwise masking, blending, enhancement, and
626 arithmetic ops.")
627 (license license:bsd-2)))
628
629 (define-public jbig2dec
630 (package
631 (name "jbig2dec")
632 (version "0.17")
633 (source (origin
634 (method url-fetch)
635 (uri (string-append "https://github.com/ArtifexSoftware"
636 "/ghostpdl-downloads/releases/download"
637 "/gs950/" name "-" version ".tar.gz"))
638 (sha256
639 (base32
640 "0wpvslmwazia3z8gyk343kbq6yj47pxr4x5yjvx332v309qssazp"))
641 (patches (search-patches "jbig2dec-ignore-testtest.patch"))))
642 (build-system gnu-build-system)
643 (arguments '(#:configure-flags '("--disable-static")))
644 (synopsis "Decoder of the JBIG2 image compression format")
645 (description
646 "JBIG2 is designed for lossy or lossless encoding of @code{bilevel} (1-bit
647 monochrome) images at moderately high resolution, and in particular scanned
648 paper documents. In this domain it is very efficient, offering compression
649 ratios on the order of 100:1.
650
651 This is a decoder only implementation, and currently is in the alpha
652 stage, meaning it doesn't completely work yet. However, it is
653 maintaining parity with available encoders, so it is useful for real
654 work.")
655 (home-page "https://jbig2dec.com")
656 (license license:gpl2+)))
657
658 (define-public jbigkit
659 (package
660 (name "jbigkit")
661 (version "2.1")
662 (source
663 (origin
664 (method url-fetch)
665 (uri (string-append "https://www.cl.cam.ac.uk/~mgk25/jbigkit/"
666 "download/jbigkit-" version ".tar.gz"))
667 (sha256
668 (base32 "0cnrcdr1dwp7h7m0a56qw09bv08krb37mpf7cml5sjdgpyv0cwfy"))
669 (modules '((guix build utils)))
670 (snippet
671 '(begin
672 ;; Remove files without clear licence information.
673 (for-each delete-file-recursively
674 (list "contrib" "examples"))
675 #t))))
676 (build-system gnu-build-system)
677 (outputs (list "out" "pbmtools"))
678 (arguments
679 `(#:modules ((srfi srfi-26)
680 ,@%gnu-build-system-modules)
681 #:phases
682 (modify-phases %standard-phases
683 (delete 'configure) ; no configure script
684 (replace 'install ; no ‘make install’ target
685 (lambda* (#:key outputs #:allow-other-keys)
686 (let* ((out (assoc-ref outputs "out"))
687 (lib (string-append out "/lib"))
688 (include (string-append out "/include")))
689 (with-directory-excursion "libjbig"
690 (for-each (cut install-file <> include)
691 (find-files "." "\\.h$"))
692 (for-each (cut install-file <> lib)
693 (find-files "." "\\.a$")))
694 #t)))
695 (add-after 'install 'install-pbmtools
696 (lambda* (#:key outputs #:allow-other-keys)
697 (let* ((out (assoc-ref outputs "pbmtools"))
698 (bin (string-append out "/bin"))
699 (man1 (string-append out "/share/man/man1"))
700 (man5 (string-append out "/share/man/man5")))
701 (with-directory-excursion "pbmtools"
702 (for-each (cut install-file <> bin)
703 (list "jbgtopbm" "jbgtopbm85"
704 "pbmtojbg" "pbmtojbg85"))
705
706 (for-each (cut install-file <> man1)
707 (find-files "." "\\.1$"))
708 (for-each (cut install-file <> man5)
709 (find-files "." "\\.5$"))
710 #t)))))
711 #:test-target "test"
712 #:tests? #f)) ; tests depend on examples/
713 (home-page "https://www.cl.cam.ac.uk/~mgk25/jbigkit/")
714 (synopsis "Lossless compression for bi-level high-resolution images")
715 (description
716 "JBIG-KIT implements the JBIG1 data compression standard (ITU-T T.82 and
717 ISO/IEC 11544:1993), designed for bi-level (one bit per pixel) images such as
718 black-and-white scanned documents. It is widely used in fax products, printer
719 firmware and drivers, document management systems, and imaging software.
720
721 This package provides a static C library of (de)compression functions and some
722 simple command-line converters similar to those provided by netpbm.
723
724 Two JBIG1 variants are available. One (@file{jbig.c}) implements nearly all
725 options of the standard but has to keep the full uncompressed image in memory.
726 The other (@file{jbig85.c}) implements just the ITU-T T.85 profile, with
727 memory management optimized for embedded and fax applications. It buffers
728 only a few lines of the uncompressed image in memory and is able to stream
729 images of initially unknown height.")
730 (license (list license:isc ; pbmtools/p?m.5
731 license:gpl2+)))) ; the rest
732
733 (define-public openjpeg
734 (package
735 (name "openjpeg")
736 (version "2.3.1")
737 (source (origin
738 (method git-fetch)
739 (uri (git-reference
740 (url "https://github.com/uclouvain/openjpeg")
741 (commit (string-append "v" version))))
742 (file-name (git-file-name "openjpeg" version))
743 (sha256
744 (base32
745 "1dn98d2dfa1lqyxxmab6rrcv52dyhjr4g7i4xf2w54fqsx14ynrb"))))
746 (build-system cmake-build-system)
747 (arguments
748 '(#:tests? #f ;TODO: requires a 1.1 GiB data repository
749 #:configure-flags '("-DBUILD_STATIC_LIBS=OFF")))
750 (inputs
751 `(("lcms" ,lcms)
752 ("libpng" ,libpng)
753 ("libtiff" ,libtiff)
754 ("zlib" ,zlib)))
755 (synopsis "JPEG 2000 codec")
756 (description
757 "The OpenJPEG library is a JPEG 2000 codec written in C. It has
758 been developed in order to promote the use of JPEG 2000, the new
759 still-image compression standard from the Joint Photographic Experts
760 Group (JPEG).
761
762 In addition to the basic codec, various other features are under
763 development, among them the JP2 and MJ2 (Motion JPEG 2000) file formats,
764 an indexing tool useful for the JPIP protocol, JPWL-tools for
765 error-resilience, a Java-viewer for j2k-images, ...")
766 (home-page "https://github.com/uclouvain/openjpeg")
767 (license license:bsd-2)))
768
769 (define-public openjpeg-1
770 (package (inherit openjpeg)
771 (name "openjpeg")
772 (version "1.5.2")
773 (source
774 (origin
775 (method url-fetch)
776 (uri
777 (string-append "mirror://sourceforge/openjpeg.mirror/" version "/"
778 name "-" version ".tar.gz"))
779 (sha256
780 (base32 "11waq9w215zvzxrpv40afyd18qf79mxc28fda80bm3ax98cpppqm"))))))
781
782 (define-public giflib
783 (package
784 (name "giflib")
785 (version "5.2.1")
786 (source (origin
787 (method url-fetch)
788 (uri (string-append "mirror://sourceforge/giflib/giflib-"
789 version ".tar.gz"))
790 (sha256
791 (base32
792 "1gbrg03z1b6rlrvjyc6d41bc8j1bsr7rm8206gb1apscyii5bnii"))))
793 (build-system gnu-build-system)
794 (outputs '("bin" ; utility programs
795 "out")) ; library
796 (arguments
797 '(#:make-flags (list "CC=gcc"
798 (string-append "PREFIX="
799 (assoc-ref %outputs "out"))
800 (string-append "BINDIR="
801 (assoc-ref %outputs "bin") "/bin"))
802 #:phases
803 (modify-phases %standard-phases
804 (add-after 'unpack 'disable-html-doc-gen
805 (lambda _
806 (substitute* "doc/Makefile"
807 (("^all: allhtml manpages") ""))
808 #t))
809 (delete 'configure)
810 (add-after 'install 'install-manpages
811 (lambda* (#:key outputs #:allow-other-keys)
812 (let* ((bin (assoc-ref outputs "bin"))
813 (man1dir (string-append bin "/share/man/man1")))
814 (mkdir-p man1dir)
815 (for-each (lambda (file)
816 (let ((base (basename file)))
817 (format #t "installing `~a' to `~a'~%"
818 base man1dir)
819 (copy-file file
820 (string-append
821 man1dir "/" base))))
822 (find-files "doc" "\\.1"))
823 #t))))))
824 (synopsis "Tools and library for working with GIF images")
825 (description
826 "GIFLIB is a library for reading and writing GIF images. It is API and
827 ABI compatible with libungif which was in wide use while the LZW compression
828 algorithm was patented. Tools are also included to convert, manipulate,
829 compose, and analyze GIF images.")
830 (home-page "http://giflib.sourceforge.net/")
831 (license license:x11)))
832
833 (define-public libungif
834 (package
835 (name "libungif")
836 (version "4.1.4")
837 (source (origin
838 (method url-fetch)
839 (uri (string-append "mirror://sourceforge/giflib/libungif-4.x/"
840 "libungif-" version "/libungif-"
841 version ".tar.bz2"))
842 (sha256
843 (base32
844 "0cnksimmmjngdrys302ik1385sg1sj4i0gxivzldhgwd46n7x2kh"))))
845 (build-system gnu-build-system)
846 (inputs `(("perl" ,perl))) ;package ships some perl tools
847 (home-page "http://giflib.sourceforge.net/")
848 (synopsis "GIF decompression library")
849 (description
850 "libungif is the old GIF decompression library by the GIFLIB project.")
851 (license license:expat)))
852
853 (define-public imlib2
854 (package
855 (name "imlib2")
856 (version "1.6.1")
857 (source (origin
858 (method url-fetch)
859 (uri (string-append
860 "mirror://sourceforge/enlightenment/imlib2-src/" version
861 "/imlib2-" version ".tar.bz2"))
862 (sha256
863 (base32
864 "0v8n3dswx7rxqfd0q03xwc7j2w1mv8lv18rdxv487a1xw5vklfad"))))
865 (build-system gnu-build-system)
866 (native-inputs
867 `(("pkgconfig" ,pkg-config)))
868 (inputs
869 `(("bzip2" ,bzip2)
870 ("freetype" ,freetype)
871 ("giflib" ,giflib)
872 ("libid3tag" ,libid3tag)
873 ("libjpeg" ,libjpeg)
874 ("libpng" ,libpng)
875 ("libtiff" ,libtiff)
876 ("libx11" ,libx11)
877 ("libxext" ,libxext)
878 ("libwebp" ,libwebp)))
879 (home-page "https://sourceforge.net/projects/enlightenment/")
880 (synopsis
881 "Loading, saving, rendering and manipulating image files")
882 (description
883 "Imlib2 is a library that does image file loading and saving as well as
884 rendering, manipulation, arbitrary polygon support, etc.
885
886 It does ALL of these operations FAST. Imlib2 also tries to be highly
887 intelligent about doing them, so writing naive programs can be done easily,
888 without sacrificing speed.
889
890 This is a complete rewrite over the Imlib 1.x series. The architecture is
891 more modular, simple, and flexible.")
892 (license license:imlib2)))
893
894 (define-public giblib
895 (package
896 (name "giblib")
897 (version "1.2.4")
898 (source (origin
899 (method url-fetch)
900 (uri (list
901 (string-append
902 "http://linuxbrit.co.uk/downloads/giblib-"
903 version ".tar.gz")
904 (string-append
905 "https://sourceforge.net/projects/slackbuildsdirectlinks/"
906 "files/giblib/giblib-" version ".tar.gz")))
907 (sha256
908 (base32
909 "1b4bmbmj52glq0s898lppkpzxlprq9aav49r06j2wx4dv3212rhp"))))
910 (build-system gnu-build-system)
911 (inputs
912 `(("libx11" ,libx11)
913 ("imlib2" ,imlib2)))
914 (home-page "http://linuxbrit.co.uk/software/") ; no real home-page
915 (synopsis "Wrapper library for imlib2")
916 (description
917 "Giblib is a simple library which wraps imlib2's context API, avoiding
918 all the context_get/set calls, adds fontstyles to the truetype renderer and
919 supplies a generic doubly-linked list and some string functions.")
920 ;; This license removes a clause about X Consortium from the original
921 ;; X11 license.
922 (license (license:x11-style "file://COPYING"
923 "See 'COPYING' in the distribution."))))
924
925 (define-public freeimage
926 (package
927 (name "freeimage")
928 (version "3.18.0")
929 (source (origin
930 (method url-fetch)
931 (uri (string-append
932 "mirror://sourceforge/freeimage/Source%20Distribution/"
933 version "/FreeImage"
934 (string-concatenate (string-split version #\.))
935 ".zip"))
936 (sha256
937 (base32
938 "1z9qwi9mlq69d5jipr3v2jika2g0kszqdzilggm99nls5xl7j4zl"))
939 (modules '((guix build utils)))
940 (snippet
941 '(begin
942 (for-each
943 (lambda (dir)
944 (delete-file-recursively (string-append "Source/" dir)))
945 '("LibJPEG" "LibOpenJPEG" "LibPNG" "LibRawLite"
946 "LibJXR" "LibWebP" "OpenEXR" "ZLib"))))
947 (patches (search-patches "freeimage-unbundle.patch"))))
948 (build-system gnu-build-system)
949 (arguments
950 '(#:phases
951 (modify-phases %standard-phases
952 ;; According to Fedora these files depend on private headers, but their
953 ;; presence is required for building, so we replace them with empty files.
954 (add-after 'unpack 'delete-unbuildable-files
955 (lambda _
956 (for-each (lambda (file)
957 (delete-file file)
958 (close (open file O_CREAT)))
959 '("Source/FreeImage/PluginG3.cpp"
960 "Source/FreeImageToolkit/JPEGTransform.cpp"))
961 #t))
962 ;; These scripts generate the Makefiles.
963 (replace 'configure
964 (lambda _
965 (invoke "sh" "gensrclist.sh")
966 (invoke "sh" "genfipsrclist.sh")))
967 (add-before 'build 'patch-makefile
968 (lambda* (#:key outputs #:allow-other-keys)
969 (substitute* "Makefile.gnu"
970 (("/usr") (assoc-ref outputs "out"))
971 (("-o root -g root") ""))
972 #t)))
973 #:make-flags
974 (list "CC=gcc"
975 ;; We need '-fpermissive' for Source/FreeImage.h.
976 ;; libjxr doesn't have a pkg-config file.
977 (string-append "CFLAGS+=-O2 -fPIC -fvisibility=hidden -fpermissive "
978 "-I" (assoc-ref %build-inputs "libjxr") "/include/jxrlib"))
979 #:tests? #f)) ; no check target
980 (native-inputs
981 `(("pkg-config" ,pkg-config)
982 ("unzip" ,unzip)))
983 (inputs
984 `(("libjpeg" ,libjpeg)
985 ("libjxr" ,libjxr)
986 ("libpng" ,libpng)
987 ("libraw" ,libraw)
988 ("libtiff" ,libtiff)
989 ("libwebp" ,libwebp)
990 ("openexr" ,openexr)
991 ("openjpeg" ,openjpeg)
992 ("zlib" ,zlib)))
993 (synopsis "Library for handling popular graphics image formats")
994 (description
995 "FreeImage is a library for developers who would like to support popular
996 graphics image formats like PNG, BMP, JPEG, TIFF and others.")
997 (license license:gpl2+)
998 (home-page "http://freeimage.sourceforge.net")))
999
1000 (define-public vigra
1001 (package
1002 (name "vigra")
1003 (version "1.11.1")
1004 (source
1005 (origin
1006 (method url-fetch)
1007 (uri (string-append "https://github.com/ukoethe/vigra/releases/download/"
1008 "Version-" (string-join (string-split version #\.) "-")
1009 "/vigra-" version "-src.tar.gz"))
1010 (sha256 (base32
1011 "1bqs8vx5i1bzamvv563i24gx2xxdidqyxh9iaj46mbznhc84wmm5"))))
1012 (build-system cmake-build-system)
1013 (inputs
1014 `(("boost" ,boost)
1015 ("fftw" ,fftw)
1016 ("fftwf" ,fftwf)
1017 ("hdf5" ,hdf5)
1018 ("ilmbase" ,ilmbase) ; propagated by openexr, but needed explicitly
1019 ; to create a configure-flag
1020 ("libjpeg" ,libjpeg)
1021 ("libpng" ,libpng)
1022 ("libtiff" ,libtiff)
1023 ("openexr" ,openexr)
1024 ("python" ,python-2) ; print syntax
1025 ("python2-numpy" ,python2-numpy)
1026 ("zlib" ,zlib)))
1027 (native-inputs
1028 `(("doxygen" ,doxygen)
1029 ("python2-nose" ,python2-nose)
1030 ("sphinx" ,python-sphinx)))
1031 (arguments
1032 `(#:test-target "check"
1033 #:phases
1034 (modify-phases %standard-phases
1035 (add-after 'unpack 'disable-broken-tests
1036 (lambda _
1037 ;; See https://github.com/ukoethe/vigra/issues/432
1038 (substitute* "test/fourier/CMakeLists.txt"
1039 (("VIGRA_ADD_TEST.*") ""))
1040 ;; This test fails with Numpy 1.15:
1041 ;; <https://github.com/ukoethe/vigra/issues/436>.
1042 (substitute* "vigranumpy/test/CMakeLists.txt"
1043 (("test1\\.py") ""))
1044 #t)))
1045 #:configure-flags
1046 (list "-Wno-dev" ; suppress developer mode with lots of warnings
1047 (string-append "-DVIGRANUMPY_INSTALL_DIR="
1048 (assoc-ref %outputs "out")
1049 "/lib/python2.7/site-packages")
1050 ;; OpenEXR is not enabled by default.
1051 "-DWITH_OPENEXR=1"
1052 ;; Fix rounding error on 32-bit machines
1053 "-DCMAKE_C_FLAGS=-ffloat-store"
1054 ;; The header files of ilmbase are not found when included
1055 ;; by the header files of openexr, and an explicit flag
1056 ;; needs to be set.
1057 (string-append "-DCMAKE_CXX_FLAGS=-I"
1058 (assoc-ref %build-inputs "ilmbase")
1059 "/include/OpenEXR"
1060 " -ffloat-store"))))
1061 (synopsis "Computer vision library")
1062 (description
1063 "VIGRA stands for Vision with Generic Algorithms. It is an image
1064 processing and analysis library that puts its main emphasis on customizable
1065 algorithms and data structures. It is particularly strong for
1066 multi-dimensional image processing.")
1067 (license license:expat)
1068 (home-page "https://ukoethe.github.io/vigra/")))
1069
1070 (define-public vigra-c
1071 (let* ((commit "66ff4fa5a7d4a77415caa676a45c2c6ea16562e7")
1072 (revision "1"))
1073 (package
1074 (name "vigra-c")
1075 (version (git-version "0.0.0" revision commit))
1076 (home-page "https://github.com/BSeppke/vigra_c")
1077 (source (origin
1078 (method git-fetch)
1079 (uri (git-reference
1080 (url home-page)
1081 (commit commit)))
1082 (sha256
1083 (base32
1084 "1pnd92s284dvsg8zp6md7p8ck55bmcsryz58gzic7jh6m72hg689"))
1085 (file-name (git-file-name name version))))
1086 (build-system cmake-build-system)
1087 (arguments
1088 `(#:tests? #f)) ; No test target.
1089 (native-inputs
1090 `(("doxygen" ,doxygen)))
1091 (inputs
1092 `(("fftw" ,fftw)
1093 ("fftwf" ,fftwf)
1094 ("hdf5" ,hdf5)
1095 ("vigra" ,vigra)))
1096 (synopsis "C interface to the VIGRA computer vision library")
1097 (description
1098 "This package provides a C interface to the VIGRA C++ computer vision
1099 library. It is designed primarily to ease the implementation of higher-level
1100 language bindings to VIGRA.")
1101 (license license:expat))))
1102
1103 (define-public libwebp
1104 (package
1105 (name "libwebp")
1106 (version "1.0.3")
1107 (source
1108 (origin
1109 ;; No tarballs are provided for >0.6.1.
1110 (method git-fetch)
1111 (uri (git-reference
1112 (url "https://chromium.googlesource.com/webm/libwebp")
1113 (commit (string-append "v" version))))
1114 (file-name (git-file-name name version))
1115 (sha256
1116 (base32
1117 "1l8h9d3z3kla567ilmymrgg8vc2n763g8qss1hah8dg832hbqkxf"))))
1118 (build-system gnu-build-system)
1119 (inputs
1120 `(("freeglut" ,freeglut)
1121 ("giflib" ,giflib)
1122 ("libjpeg" ,libjpeg)
1123 ("libpng" ,libpng)
1124 ("libtiff" ,libtiff)))
1125 (native-inputs
1126 `(("autoconf" ,autoconf)
1127 ("automake" ,automake)
1128 ("libtool" ,libtool)))
1129 (arguments
1130 '(#:configure-flags '("--enable-libwebpmux"
1131 "--enable-libwebpdemux"
1132 "--enable-libwebpdecoder")))
1133 (home-page "https://developers.google.com/speed/webp/")
1134 (synopsis "Lossless and lossy image compression")
1135 (description
1136 "WebP is a new image format that provides lossless and lossy compression
1137 for images. WebP lossless images are 26% smaller in size compared to
1138 PNGs. WebP lossy images are 25-34% smaller in size compared to JPEG images at
1139 equivalent SSIM index. WebP supports lossless transparency (also known as
1140 alpha channel) with just 22% additional bytes. Transparency is also supported
1141 with lossy compression and typically provides 3x smaller file sizes compared
1142 to PNG when lossy compression is acceptable for the red/green/blue color
1143 channels.")
1144 (license license:bsd-3)))
1145
1146 (define-public libmng
1147 (package
1148 (name "libmng")
1149 (version "2.0.3")
1150 (source (origin
1151 (method url-fetch)
1152 (uri (string-append "mirror://sourceforge/libmng/libmng-devel/"
1153 version "/" name "-" version ".tar.xz"))
1154 (sha256
1155 (base32
1156 "1lvxnpds0vcf0lil6ia2036ghqlbl740c4d2sz0q5g6l93fjyija"))))
1157 (build-system gnu-build-system)
1158 (propagated-inputs
1159 ;; These are all in the 'Libs.private' field of libmng.pc.
1160 `(("lcms" ,lcms)
1161 ("libjpeg" ,libjpeg)
1162 ("zlib" ,zlib)))
1163 (home-page "http://www.libmng.com/")
1164 (synopsis "Library for handling MNG files")
1165 (description
1166 "Libmng is the MNG (Multiple-image Network Graphics) reference library.")
1167 (license license:bsd-3)))
1168
1169 (define-public exiv2
1170 (package
1171 (name "exiv2")
1172 (version "0.27.2")
1173 (source
1174 (origin
1175 (method url-fetch)
1176 (uri (string-append "https://www.exiv2.org/builds/exiv2-" version
1177 "-Source.tar.gz"))
1178 (sha256
1179 (base32 "0gqminvj14xm3rgbnydbywf22608js80rp7nmxxk4497j5mzali6"))))
1180 (build-system cmake-build-system)
1181 (arguments '(#:tests? #f)) ; no test suite
1182 (propagated-inputs
1183 `(("expat" ,expat)
1184 ("zlib" ,zlib)))
1185 (home-page "https://www.exiv2.org/")
1186 (synopsis "Library and command-line utility to manage image metadata")
1187 (description
1188 "Exiv2 is a C++ library and a command line utility to manage image
1189 metadata. It provides fast and easy read and write access to the Exif, IPTC
1190 and XMP metadata of images in various formats.")
1191
1192 ;; Files under `xmpsdk' are a copy of Adobe's XMP SDK, licensed under the
1193 ;; 3-clause BSD license: <http://www.adobe.com/devnet/xmp/sdk/eula.html>.
1194 ;; The core is GPLv2+:
1195 ;; <https://launchpad.net/ubuntu/precise/+source/exiv2/+copyright>.
1196 (license license:gpl2+)))
1197
1198 (define-public exiv2-0.26
1199 (package
1200 (inherit exiv2)
1201 (version "0.26")
1202 (source (origin
1203 (method url-fetch)
1204 (uri (list (string-append "https://www.exiv2.org/builds/exiv2-"
1205 version "-trunk.tar.gz")
1206 (string-append "https://www.exiv2.org/exiv2-"
1207 version ".tar.gz")
1208 (string-append "https://fossies.org/linux/misc/exiv2-"
1209 version ".tar.gz")))
1210 (patches (search-patches "exiv2-CVE-2017-14860.patch"
1211 "exiv2-CVE-2017-14859-14862-14864.patch"))
1212 (sha256
1213 (base32
1214 "1yza317qxd8yshvqnay164imm0ks7cvij8y8j86p1gqi1153qpn7"))))
1215 (build-system gnu-build-system)
1216 (arguments '(#:tests? #f)) ; no `check' target
1217 (propagated-inputs
1218 `(("expat" ,expat)
1219 ("zlib" ,zlib)))
1220 (native-inputs
1221 `(("intltool" ,intltool)))
1222
1223 ;; People should rely on the newer version, so don't expose it.
1224 (properties `((hidden? . #t)))))
1225
1226 (define-public devil
1227 (package
1228 (name "devil")
1229 (version "1.8.0")
1230 (source (origin
1231 (method url-fetch)
1232 (uri (string-append "http://downloads.sourceforge.net/openil/"
1233 "DevIL-" version ".tar.gz"))
1234 (sha256
1235 (base32
1236 "02dpzvi493r09c9hfjnk54nladl3qw55iqkkg18g12fxwwz9fx80"))))
1237 (build-system cmake-build-system)
1238 (arguments
1239 '(;; XXX: Not supported in the released CMakeLists.txt.
1240 ;; Enable this for > 1.8.0.
1241 #:tests? #f
1242 #:phases
1243 (modify-phases %standard-phases
1244 (add-before 'configure 'change-directory
1245 (lambda _ (chdir "DevIL") #t)))))
1246 (native-inputs
1247 `(("pkg-config" ,pkg-config)))
1248 (inputs
1249 `(("lcms" ,lcms)
1250 ("libjpeg" ,libjpeg-turbo)
1251 ("libmng" ,libmng)
1252 ("libpng" ,libpng)
1253 ("libtiff" ,libtiff)
1254 ("openexr" ,openexr)
1255 ("zlib" ,zlib)))
1256 (synopsis "Library for manipulating many image formats")
1257 (description "Developer's Image Library (DevIL) is a library to develop
1258 applications with support for many types of images. DevIL can load, save,
1259 convert, manipulate, filter and display a wide variety of image formats.")
1260 (home-page "http://openil.sourceforge.net")
1261 (license license:lgpl2.1+)))
1262
1263 (define-public jasper
1264 (package
1265 (name "jasper")
1266 (version "2.0.16")
1267 (source (origin
1268 (method git-fetch)
1269 (uri (git-reference
1270 (url "https://github.com/mdadams/jasper.git")
1271 (commit (string-append "version-" version))))
1272 (file-name (git-file-name name version))
1273 (sha256
1274 (base32
1275 "05l75yd1zsxwv25ykwwwjs8961szv7iywf16nc6vc6qpby27ckv6"))))
1276 (build-system cmake-build-system)
1277 (inputs `(("libjpeg" ,libjpeg)))
1278 (synopsis "JPEG-2000 library")
1279 (description "The JasPer Project is an initiative to provide a reference
1280 implementation of the codec specified in the JPEG-2000 Part-1 standard (i.e.,
1281 ISO/IEC 15444-1).")
1282 (home-page "https://www.ece.uvic.ca/~frodo/jasper/")
1283 (license (license:x11-style "file://LICENSE"))))
1284
1285 (define-public zimg
1286 (package
1287 (name "zimg")
1288 (version "2.9.2")
1289 (source
1290 (origin
1291 (method git-fetch)
1292 (uri (git-reference
1293 (url "https://github.com/sekrit-twc/zimg.git")
1294 (commit (string-append "release-" version))))
1295 (file-name (git-file-name name version))
1296 (sha256
1297 (base32 "0jlgrlfs9maixd8mx7gk2kfawz8ixnihkxi7vhyzfy1gq49vmxm2"))))
1298 (build-system gnu-build-system)
1299 (native-inputs
1300 `(("autoconf" ,autoconf)
1301 ("automake" ,automake)
1302 ("libtool" ,libtool)))
1303 (synopsis "Scaling, colorspace conversion, and dithering library")
1304 (description "Zimg implements the commonly required image processing basics
1305 of scaling, colorspace conversion, and depth conversion. A simple API enables
1306 conversion between any supported formats to operate with minimal knowledge from
1307 the programmer.")
1308 (home-page "https://github.com/sekrit-twc/zimg")
1309 ;; test/extra/ contains musl-libm,
1310 ;; which is MIT/expat licensed, but only used for tests
1311 (license license:wtfpl2)))
1312
1313 (define-public perceptualdiff
1314 (package
1315 (name "perceptualdiff")
1316 (version "1.3")
1317 (source
1318 (origin
1319 (method git-fetch)
1320 (uri (git-reference
1321 (url "https://github.com/myint/perceptualdiff.git")
1322 (commit (string-append "v" version))))
1323 (file-name (git-file-name name version))
1324 (sha256
1325 (base32 "0yys55f9i9g3wjjg0j2m0p0k21zwnid8520a8lrr30khm4k5gibp"))))
1326 (build-system cmake-build-system)
1327 (inputs `(("freeimage" ,freeimage)))
1328 (arguments
1329 '(#:phases (modify-phases %standard-phases
1330 (add-after 'unpack 'fix-tests
1331 ;; cmake-build-system uses a build/ directory outside
1332 ;; of the source tree, one level higher than expected
1333 (lambda _
1334 (substitute* "test/run_tests.bash"
1335 (("../build") "../../build"))
1336 #t)))))
1337 (home-page "https://github.com/myint/perceptualdiff")
1338 (synopsis "Perceptual image comparison utility")
1339 (description "PerceptualDiff visually compares two images to determine
1340 whether they look alike. It uses a computational model of the human visual
1341 system to detect similarities. This allows it too see beyond irrelevant
1342 differences in file encoding, image quality, and other small variations.")
1343 (license license:gpl2+)))
1344
1345 (define-public steghide
1346 (package
1347 (name "steghide")
1348 (version "0.5.1")
1349 (source (origin
1350 (method url-fetch)
1351 (uri (string-append "mirror://sourceforge/steghide/steghide/"
1352 version "/steghide-" version ".tar.bz2"))
1353 (sha256
1354 (base32
1355 "18bxlhbdc3zsmxj84i417xjh0q28kv26q449k23n0a72ldwziix2"))
1356 (patches (list (search-patch "steghide-fixes.patch")))))
1357 (build-system gnu-build-system)
1358 (native-inputs
1359 `(("gettext" ,gettext-minimal)
1360 ("libtool" ,libtool)
1361 ("perl" ,perl))) ;for tests
1362 (inputs
1363 `(("libmhash" ,libmhash)
1364 ("libmcrypt" ,libmcrypt)
1365 ("libjpeg" ,libjpeg)
1366 ("zlib" ,zlib)))
1367 (arguments
1368 `(#:make-flags '("CXXFLAGS=-fpermissive") ;required for MHashPP.cc
1369
1370 #:phases (modify-phases %standard-phases
1371 (add-before 'configure 'set-perl-search-path
1372 (lambda _
1373 ;; Work around "dotless @INC" build failure.
1374 (setenv "PERL5LIB"
1375 (string-append (getcwd) "/tests:"
1376 (getenv "PERL5LIB")))
1377 #t)))))
1378 (home-page "http://steghide.sourceforge.net")
1379 (synopsis "Image and audio steganography")
1380 (description
1381 "Steghide is a program to hide data in various kinds of image and audio
1382 files (known as @dfn{steganography}). Neither color nor sample frequencies are
1383 changed, making the embedding resistant against first-order statistical tests.")
1384 (license license:gpl2+)))
1385
1386 (define-public stb-image-for-extempore
1387 (let ((revision "1")
1388 (commit "152a250a702bf28951bb0220d63bc0c99830c498"))
1389 (package
1390 (name "stb-image-for-extempore")
1391 (version (string-append "0-" revision "." (string-take commit 9)))
1392 (source
1393 (origin (method git-fetch)
1394 (uri (git-reference
1395 (url "https://github.com/extemporelang/stb.git")
1396 (commit commit)))
1397 (sha256
1398 (base32
1399 "0y0aa20pj9311x2ii06zg8xs34idg14hfgldqc5ymizc6cf1qiqv"))
1400 (file-name (string-append name "-" version "-checkout"))))
1401 (build-system cmake-build-system)
1402 (arguments `(#:tests? #f)) ; no tests included
1403 ;; Extempore refuses to build on architectures other than x86_64
1404 (supported-systems '("x86_64-linux"))
1405 (home-page "https://github.com/extemporelang/stb")
1406 (synopsis "Image library for Extempore")
1407 (description
1408 "This package is a collection of assorted single-file libraries. Of
1409 all included libraries only the image loading and decoding library is
1410 installed as @code{stb_image}.")
1411 (license license:public-domain))))
1412
1413 (define-public optipng
1414 (package
1415 (name "optipng")
1416 (version "0.7.7")
1417 (source
1418 (origin
1419 (method url-fetch)
1420 (uri (string-append "http://prdownloads.sourceforge.net/optipng/optipng-"
1421 version ".tar.gz"))
1422 (sha256
1423 (base32
1424 "0lj4clb851fzpaq446wgj0sfy922zs5l5misbpwv6w7qrqrz4cjg"))
1425 (modules '((guix build utils)))
1426 (snippet
1427 '(begin
1428 (delete-file-recursively "src/libpng")
1429 (delete-file-recursively "src/zlib")
1430 #t))))
1431 (build-system gnu-build-system)
1432 (inputs
1433 `(("libpng" ,libpng)
1434 ("zlib" ,zlib)))
1435 (arguments
1436 '(#:phases
1437 (modify-phases %standard-phases
1438 (replace 'configure
1439 (lambda* (#:key outputs #:allow-other-keys)
1440 ;; configure script doesn't accept arguments CONFIG_SHELL and SHELL
1441 (invoke "sh" "configure"
1442 (string-append "--prefix=" (assoc-ref outputs "out"))
1443 "-with-system-libs")
1444 #t)))))
1445 (synopsis "Optimizer that recompresses PNG image files to a smaller size")
1446 (description "OptiPNG is a PNG optimizer that recompresses image
1447 files to a smaller size, without losing any information. This program
1448 also converts external formats (BMP, GIF, PNM and TIFF) to optimized
1449 PNG, and performs PNG integrity checks and corrections.")
1450 (home-page "http://optipng.sourceforge.net/")
1451 (license license:zlib)))
1452
1453 (define-public pngsuite
1454 (package
1455 (name "pngsuite")
1456 (version "2017jul19")
1457 (source
1458 (origin
1459 (method url-fetch/tarbomb)
1460 (uri (string-append "http://www.schaik.com/pngsuite2011/PngSuite-"
1461 version ".tgz"))
1462 (sha256
1463 (base32
1464 "1j7xgd9iffcnpphhzz9ld9ybrjmx9brhq0803g0450ssr52b5502"))))
1465 (build-system gnu-build-system)
1466 (arguments
1467 '(#:tests? #f ; there is no test target
1468 #:license-file-regexp "PngSuite.LICENSE"
1469 #:phases
1470 (modify-phases %standard-phases
1471 (replace 'install
1472 (lambda* (#:key outputs #:allow-other-keys)
1473 (let ((out (assoc-ref outputs "out")))
1474 (copy-recursively "." (string-append out "/"))
1475 #t)))
1476 (delete 'build)
1477 (delete 'configure))))
1478 (home-page "http://www.schaik.com/pngsuite2011/pngsuite.html")
1479 (synopsis "Example PNGs for use in test suites")
1480 (description "Collection of graphics images created to test PNG
1481 applications like viewers, converters and editors. As far as that is
1482 possible, all formats supported by the PNG standard are represented.")
1483 (license (license:fsdg-compatible "file://PngSuite.LICENSE" "Permission to
1484 use, copy, modify and distribute these images for any purpose and without fee
1485 is hereby granted."))))
1486
1487 (define-public libjpeg-turbo
1488 (package
1489 (name "libjpeg-turbo")
1490 (version "2.0.3")
1491 (source (origin
1492 (method url-fetch)
1493 (uri (string-append "mirror://sourceforge/libjpeg-turbo/"
1494 version "/libjpeg-turbo-" version ".tar.gz"))
1495 (patches (search-patches "libjpeg-turbo-CVE-2019-2201.patch"))
1496 (sha256
1497 (base32
1498 "1ds16bnj17v6hzd43w8pzijz3imd9am4hw75ir0fxm240m8dwij2"))))
1499 (build-system cmake-build-system)
1500 (native-inputs
1501 `(("nasm" ,nasm)))
1502 (arguments
1503 '(#:configure-flags '("-DCMAKE_INSTALL_LIBDIR:PATH=lib"
1504 "-DENABLE_STATIC=0")))
1505 (home-page "https://libjpeg-turbo.org/")
1506 (synopsis "SIMD-accelerated JPEG image handling library")
1507 (description "libjpeg-turbo is a JPEG image codec that accelerates baseline
1508 JPEG compression and decompression using SIMD instructions: MMX on x86, SSE2 on
1509 x86-64, NEON on ARM, and AltiVec on PowerPC processors. Even on other systems,
1510 its highly-optimized Huffman coding routines allow it to outperform libjpeg by
1511 a significant amount.
1512 libjpeg-turbo implements both the traditional libjpeg API and the less powerful
1513 but more straightforward TurboJPEG API, and provides a full-featured Java
1514 interface. It supports color space extensions that allow it to compress from
1515 and decompress to 32-bit and big-endian pixel buffers (RGBX, XBGR, etc.).")
1516 ;; libjpeg-turbo is covered by three different licenses; see LICENSE.md.
1517 (license (list license:bsd-3 ;the TurboJPEG API library and programs
1518 license:ijg ;the libjpeg library and associated tools
1519 license:zlib)))) ;the libjpeg-turbo SIMD extensions
1520
1521 (define-public niftilib
1522 (package
1523 (name "niftilib")
1524 (version "2.0.0")
1525 (source (origin
1526 (method url-fetch)
1527 (uri (list (string-append "mirror://sourceforge/niftilib/"
1528 "nifticlib/nifticlib_"
1529 (string-join (string-split version #\.) "_")
1530 "/nifticlib-" version ".tar.gz")))
1531 (sha256
1532 (base32 "123z9bwzgin5y8gi5ni8j217k7n683whjsvg0lrpii9flgk8isd3"))))
1533 (build-system gnu-build-system)
1534 (arguments
1535 '(#:tests? #f ; there is no test target
1536 #:parallel-build? #f ; not supported
1537 #:make-flags
1538 (list "SHELL=bash"
1539 (string-append "ZLIB_INC="
1540 (assoc-ref %build-inputs "zlib") "/include")
1541 ;; Append "-fPIC" to CFLAGS.
1542 (string-append "CFLAGS="
1543 "-Wall -ansi -pedantic -fPIC"))
1544 #:phases
1545 (modify-phases %standard-phases
1546 (replace 'install
1547 (lambda* (#:key outputs #:allow-other-keys)
1548 (let ((out (assoc-ref outputs "out")))
1549 (for-each
1550 (lambda (dir)
1551 (copy-recursively dir (string-append out "/" dir)))
1552 '("bin" "lib" "include")))
1553 #t))
1554 (delete 'configure))))
1555 (inputs
1556 `(("zlib" ,zlib)))
1557 (synopsis "Library for reading and writing files in the nifti-1 format")
1558 (description "Niftilib is a set of i/o libraries for reading and writing
1559 files in the nifti-1 data format - a binary file format for storing
1560 medical image data, e.g. magnetic resonance image (MRI) and functional MRI
1561 (fMRI) brain images.")
1562 (home-page "http://niftilib.sourceforge.net")
1563 (license license:public-domain)))
1564
1565 (define-public gpick
1566 (package
1567 (name "gpick")
1568 (version "0.2.5")
1569 (source (origin
1570 (method git-fetch)
1571 (uri (git-reference
1572 (url "https://github.com/thezbyg/gpick.git")
1573 (commit (string-append name "-" version))))
1574 (file-name (git-file-name name version))
1575 (sha256
1576 (base32
1577 "0mcj806zagh122qgrdkrg0macpzby97y89xi2sjyn3bh8vmmyxjy"))))
1578 (build-system scons-build-system)
1579 (native-inputs
1580 `(("boost" ,boost)
1581 ("gettext" ,gnu-gettext)
1582 ("pkg-config" ,pkg-config)))
1583 (inputs
1584 `(("expat" ,expat)
1585 ("gtk2" ,gtk+-2)
1586 ("lua" ,lua-5.2)))
1587 (arguments
1588 `(#:tests? #f
1589 #:scons ,scons-python2
1590 #:scons-flags (list (string-append "DESTDIR=" %output))
1591 #:phases
1592 (modify-phases %standard-phases
1593 (add-before 'build 'fix-lua-reference
1594 (lambda _
1595 (substitute* "SConscript"
1596 (("lua5.2") "lua-5.2"))
1597 #t)))))
1598 (home-page "http://www.gpick.org/")
1599 (synopsis "Color picker")
1600 (description "Gpick is an advanced color picker and palette editing tool.")
1601 (license license:bsd-3)))
1602
1603 (define-public libiptcdata
1604 (package
1605 (name "libiptcdata")
1606 (version "1.0.5")
1607 (source (origin
1608 (method url-fetch)
1609 (uri (string-append "https://github.com/ianw/libiptcdata"
1610 "/releases/download/release_"
1611 (string-join (string-split version #\.) "_")
1612 "/" name "-" version ".tar.gz"))
1613 (sha256
1614 (base32
1615 "17m2bscc76r1bymjgb44fbbfrdsjfqyb2ivg9wchyllm8pgx1560"))))
1616 (build-system gnu-build-system)
1617 (home-page "https://github.com/ianw/libiptcdata")
1618 (synopsis "IPTC metadata manipulation library")
1619 (description
1620 "Libiptcdata is a C library for manipulating the International Press
1621 Telecommunications Council (@dfn{IPTC}) metadata stored within multimedia files
1622 such as images. This metadata can include captions and keywords, often used by
1623 popular photo management applications. The library provides routines for
1624 parsing, viewing, modifying, and saving this metadata.")
1625 (license license:lgpl2.0+)))
1626
1627 (define-public flameshot
1628 (package
1629 (name "flameshot")
1630 (version "0.5.1")
1631 (source
1632 (origin
1633 (method git-fetch)
1634 (uri (git-reference
1635 (url "https://github.com/lupoDharkael/flameshot.git")
1636 (commit (string-append "v" version))))
1637 (file-name (git-file-name name version))
1638 (sha256
1639 (base32
1640 "13h77np93r796jf289v4r687cmnpqkyqs34dm9gif4akaig74ky0"))))
1641 (build-system gnu-build-system)
1642 (native-inputs
1643 `(("qttools" ,qttools)))
1644 (inputs
1645 `(("qtbase" ,qtbase)))
1646 (arguments
1647 `(#:tests? #f ; no tests
1648 #:phases
1649 (modify-phases %standard-phases
1650 (replace 'configure
1651 (lambda* (#:key outputs #:allow-other-keys)
1652 (invoke "qmake"
1653 "CONFIG+=packaging"
1654 (string-append "BASEDIR=" (assoc-ref outputs "out"))
1655 "PREFIX=/"))))))
1656 (home-page "https://github.com/lupoDharkael/flameshot")
1657 (synopsis "Powerful yet simple to use screenshot software")
1658 (description "Flameshot is a screenshot program.
1659 Features:
1660
1661 @itemize
1662 @item Customizable appearance.
1663 @item Easy to use.
1664 @item In-app screenshot edition.
1665 @item DBus interface.
1666 @item Upload to Imgur.
1667 @end itemize\n")
1668 (license license:gpl3+)))
1669
1670 (define-public gifsicle
1671 (package
1672 (name "gifsicle")
1673 (version "1.92")
1674 (source
1675 (origin
1676 (method url-fetch)
1677 (uri (string-append "https://www.lcdf.org/gifsicle/gifsicle-"
1678 version ".tar.gz"))
1679 (sha256
1680 (base32 "0rffpzxcak19k6cngpxn73khvm3z1gswrqs90ycdzzb53p05ddas"))))
1681 (build-system gnu-build-system)
1682 (arguments
1683 '(#:phases
1684 (modify-phases %standard-phases
1685 (add-before 'check 'patch-tests
1686 (lambda _
1687 (substitute* "test/testie"
1688 (("/usr/bin/perl")
1689 (which "perl"))
1690 (("/bin/sh")
1691 (which "sh"))
1692 (("/bin/rm")
1693 (which "rm")))
1694 #t)))))
1695 (native-inputs `(("perl" ,perl))) ; only for tests
1696 (inputs `(("libx11" ,libx11)))
1697 (home-page "https://www.lcdf.org/gifsicle/")
1698 (synopsis "Edit GIF images and animations")
1699 (description "Gifsicle is a command-line GIF image manipulation tool that:
1700
1701 @itemize
1702 @item Provides a batch mode for changing GIFs in place.
1703 @item Prints detailed information about GIFs, including comments.
1704 @item Control over interlacing, comments, looping, transparency, etc.
1705 @item Creates well-behaved GIFs: removes redundant colors, only uses local color
1706 tables, etc.
1707 @item Shrinks colormaps and change images to use the Web-safe palette.
1708 @item Optimizes GIF animations, or unoptimizes them for easier editing.
1709 @end itemize
1710
1711 Two other programs are included with Gifsicle: @command{gifview} is a
1712 lightweight animated-GIF viewer, and @command{gifdiff} compares two GIFs for
1713 identical visual appearance.")
1714 (license license:gpl2+)))
1715
1716 ;; 1.0.7 is buggy and reverted in git repository.
1717 (define-public jp2a
1718 (package
1719 (name "jp2a")
1720 (version "1.0.6")
1721 (source
1722 (origin
1723 (method url-fetch)
1724 (uri (string-append "mirror://debian/pool/main/j/jp2a/jp2a_"
1725 version ".orig.tar.gz"))
1726 (sha256
1727 (base32
1728 "076frk3pa16s4r1b10zgy81vdlz0385zh3ykbnkaij25jn5aqc09"))))
1729 (build-system gnu-build-system)
1730 (inputs
1731 `(("curl" ,curl)
1732 ("libjpeg" ,libjpeg)
1733 ("ncurses" ,ncurses)))
1734 (home-page "https://csl.name/jp2a/")
1735 (synopsis "Convert JPEG images to ASCII")
1736 (description
1737 "Jp2a is a small utility that converts JPEG images to ASCII.")
1738 (license license:gpl2)))
1739
1740 (define-public grim
1741 (package
1742 (name "grim")
1743 (version "1.2.0")
1744 (source
1745 (origin
1746 (method git-fetch)
1747 (uri (git-reference
1748 (url "https://github.com/emersion/grim.git")
1749 (commit (string-append "v" version))))
1750 (file-name (git-file-name name version))
1751 (sha256
1752 (base32 "0brljl4zfbn5mh9hkfrfkvd27c5y9vdkgap9r1hrfy9r1x20sskn"))))
1753 (build-system meson-build-system)
1754 (native-inputs `(("pkg-config" ,pkg-config)))
1755 (inputs `(("cairo" ,cairo)
1756 ("libjpeg-turbo" ,libjpeg-turbo)
1757 ("scdoc" ,scdoc)
1758 ("wayland" ,wayland)
1759 ("wayland-protocols" ,wayland-protocols)))
1760 (home-page "https://github.com/emersion/grim")
1761 (synopsis "Create screenshots from a Wayland compositor")
1762 (description "grim can create screenshots from a Wayland compositor.")
1763 ;; MIT license.
1764 (license license:expat)))
1765
1766 (define-public slurp
1767 (package
1768 (name "slurp")
1769 (version "1.2.0")
1770 (source
1771 (origin
1772 (method git-fetch)
1773 (uri (git-reference
1774 (url "https://github.com/emersion/slurp.git")
1775 (commit (string-append "v" version))))
1776 (file-name (git-file-name name version))
1777 (sha256
1778 (base32 "0580m6kaiilgsrcj608r837r37sl6a25y7w21p7d6ij20fs3gvg1"))))
1779 (build-system meson-build-system)
1780 (native-inputs `(("pkg-config" ,pkg-config)))
1781 (inputs `(("cairo" ,cairo)
1782 ("scdoc" ,scdoc)
1783 ("wayland" ,wayland)
1784 ("wayland-protocols" ,wayland-protocols)))
1785 (home-page "https://github.com/emersion/slurp")
1786 (synopsis "Select a region in a Wayland compositor")
1787 (description "Slurp can select a region in a Wayland compositor and print it
1788 to the standard output. It works well together with grim.")
1789 ;; MIT license.
1790 (license license:expat)))
1791
1792 (define-public sng
1793 (package
1794 (name "sng")
1795 (version "1.1.0")
1796 (source
1797 (origin
1798 (method url-fetch)
1799 (uri (string-append "mirror://sourceforge/sng/sng-"
1800 version ".tar.gz"))
1801 (sha256
1802 (base32 "06a6ydvx9xb3vxvrzdrg3hq0rjwwj9ibr7fyyxjxq6qx1j3mb70i"))))
1803 (build-system gnu-build-system)
1804 (arguments
1805 `(#:phases
1806 (modify-phases %standard-phases
1807 (add-before 'check 'link-pngsuite
1808 ;; tests expect pngsuite in source dir
1809 (lambda* (#:key inputs #:allow-other-keys)
1810 (symlink (assoc-ref inputs "pngsuite") "pngsuite")
1811 #t)))
1812 #:configure-flags
1813 (list (string-append "--with-rgbtxt="
1814 (assoc-ref %build-inputs "xorg-rgb")
1815 "/share/X11/rgb.txt"))))
1816 (inputs `(("xorg-rgb" ,xorg-rgb)
1817 ("libpng" ,libpng)))
1818 (native-inputs `(("pngsuite" ,pngsuite)))
1819 (home-page "http://sng.sourceforge.net")
1820 (synopsis "Markup language for representing PNG contents")
1821 (description "SNG (Scriptable Network Graphics) is a minilanguage designed
1822 specifically to represent the entire contents of a PNG (Portable Network
1823 Graphics) file in an editable form. Thus, SNGs representing elaborate
1824 graphics images and ancillary chunk data can be readily generated or modified
1825 using only text tools.
1826
1827 SNG is implemented by a compiler/decompiler called sng that
1828 losslessly translates between SNG and PNG.")
1829 (license license:zlib)))