This is an automated email from the git hooks/post-receive script.
guix_mirror_bot pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new 7900633df3 gnu: Add jhead.
7900633df3 is described below
commit 7900633df34bd18d9de5823824332df58f9e005c
Author: Junker <[email protected]>
AuthorDate: Wed Jan 7 15:41:49 2026 +0300
gnu: Add jhead.
* gnu/packages/image.scm (jhead): New variable.
Merges: https://codeberg.org/guix/guix/pulls/5415
Change-Id: Ia4d18490a735218938da0d9675eb6660bc29d2f0
Reviewed-by: Anderson Torres <[email protected]>
Signed-off-by: Sharlatan Hellseher <[email protected]>
---
gnu/packages/image.scm | 32 ++++++++++++++++++++++++++++++++
1 file changed, 32 insertions(+)
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 <[email protected]>
;;; Copyright © 2025 Ghislain Vaillant <[email protected]>
;;; Copyright © 2026 Carlos Durán Domínguez <[email protected]>
+;;; Copyright © 2025 Junker <[email protected]>
;;;
;;; 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")