diff --git a/gnu/packages/image.scm b/gnu/packages/image.scm index 2ada1377b5..06ad9be911 100644 --- a/gnu/packages/image.scm +++ b/gnu/packages/image.scm @@ -43,6 +43,7 @@ ;;; Copyright © 2025 Jake Forster ;;; Copyright © 2025 Ghislain Vaillant ;;; Copyright © 2026 Carlos Durán Domínguez +;;; Copyright © 2025 Junker ;;; ;;; This file is part of GNU Guix. ;;; @@ -720,6 +721,37 @@ official designation is ISO/IEC 29199-2). This library is an implementation of t "See the header of the Makefile in the distribution.")) (home-page "https://jxrlib.codeplex.com/"))) +(define-public jhead + (package + (name "jhead") + (version "3.08") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/Matthias-Wandel/jhead") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0q9zc47ngnj4zfdpy43jcp2cbnmrlgg38aa7spv8zh94i75jwmvp")))) + (build-system gnu-build-system) + (arguments + (list + #:tests? #f ;no tests. + #:make-flags + #~(list (string-append "CC=" #$(cc-for-target)) + (string-append "PREFIX=" #$output)) + #:phases + #~(modify-phases %standard-phases + (delete 'configure)))) + (home-page "https://github.com/Matthias-Wandel/jhead") + (synopsis "Displays and manipulates EXIF header of JPEG files") + (description + "@command{jhead} is a simple command line tool for display and manipulate +@acronym{EXIF, Exchangeable Image File Format} header data embedded in JPEG +images.") + (license license:public-domain))) + (define-public jpegoptim (package (name "jpegoptim")