summaryrefslogtreecommitdiff
path: root/gnu/packages/image.scm
diff options
context:
space:
mode:
authorJunker <dk@junkeria.club>2026-01-07 15:41:49 +0300
committerSharlatan Hellseher <sharlatanus@gmail.com>2026-03-02 23:18:11 +0000
commit7900633df34bd18d9de5823824332df58f9e005c (patch)
treeb834b1c899f09e4203a5d9b6312d4f703da34d34 /gnu/packages/image.scm
parent72cf11751eed42fe71339998c1ead9ee654f8b72 (diff)
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 <anderson.torres.8519@gmail.com> Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu/packages/image.scm')
-rw-r--r--gnu/packages/image.scm32
1 files changed, 32 insertions, 0 deletions
diff --git a/gnu/packages/image.scm b/gnu/packages/image.scm
index 2ada1377b5a..06ad9be9114 100644
--- a/gnu/packages/image.scm
+++ b/gnu/packages/image.scm
@@ -43,6 +43,7 @@
43;;; Copyright © 2025 Jake Forster <jakecameron.forster@gmail.com> 43;;; Copyright © 2025 Jake Forster <jakecameron.forster@gmail.com>
44;;; Copyright © 2025 Ghislain Vaillant <ghislain.vaillant@inria.fr> 44;;; Copyright © 2025 Ghislain Vaillant <ghislain.vaillant@inria.fr>
45;;; Copyright © 2026 Carlos Durán Domínguez <wurt@wurt.eu> 45;;; Copyright © 2026 Carlos Durán Domínguez <wurt@wurt.eu>
46;;; Copyright © 2025 Junker <dk@junkeria.club>
46;;; 47;;;
47;;; This file is part of GNU Guix. 48;;; This file is part of GNU Guix.
48;;; 49;;;
@@ -720,6 +721,37 @@ official designation is ISO/IEC 29199-2). This library is an implementation of t
720 "See the header of the Makefile in the distribution.")) 721 "See the header of the Makefile in the distribution."))
721 (home-page "https://jxrlib.codeplex.com/"))) 722 (home-page "https://jxrlib.codeplex.com/")))
722 723
724(define-public jhead
725 (package
726 (name "jhead")
727 (version "3.08")
728 (source
729 (origin
730 (method git-fetch)
731 (uri (git-reference
732 (url "https://github.com/Matthias-Wandel/jhead")
733 (commit version)))
734 (file-name (git-file-name name version))
735 (sha256
736 (base32 "0q9zc47ngnj4zfdpy43jcp2cbnmrlgg38aa7spv8zh94i75jwmvp"))))
737 (build-system gnu-build-system)
738 (arguments
739 (list
740 #:tests? #f ;no tests.
741 #:make-flags
742 #~(list (string-append "CC=" #$(cc-for-target))
743 (string-append "PREFIX=" #$output))
744 #:phases
745 #~(modify-phases %standard-phases
746 (delete 'configure))))
747 (home-page "https://github.com/Matthias-Wandel/jhead")
748 (synopsis "Displays and manipulates EXIF header of JPEG files")
749 (description
750 "@command{jhead} is a simple command line tool for display and manipulate
751@acronym{EXIF, Exchangeable Image File Format} header data embedded in JPEG
752images.")
753 (license license:public-domain)))
754
723(define-public jpegoptim 755(define-public jpegoptim
724 (package 756 (package
725 (name "jpegoptim") 757 (name "jpegoptim")