From 663b7a93eacfc131c36baa62ae569c7042b821ba Mon Sep 17 00:00:00 2001 From: IliaLuetin Date: Mon, 27 Oct 2025 14:30:39 +0100 Subject: [PATCH] gnu: Add go-github-com-kovidgoyal-exiffix. * gnu/packages/golang-xyz.scm (go-github-com-kovidgoyal-exiffix): New variable. Change-Id: I3ebac4b73001eaeae8da3c92da3e0831b5babd4a Signed-off-by: Sharlatan Hellseher --- gnu/packages/golang-xyz.scm | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm index 17a536dc4621d63d64b190aa8c4808d182b20367..65d0a6852cf51557435c11b4d93b282c228a7d53 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm @@ -12937,6 +12937,33 @@ bus system. This is a fork of @url{https://github.com/godbus/dbus} maintained by Kovid Goyal for use in Kitty.") (license license:bsd-2))) +(define-public go-github-com-kovidgoyal-exiffix + (package + (name "go-github-com-kovidgoyal-exiffix") + (version "0.0.0-20250919160812-dbef770c2032") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/kovidgoyal/exiffix") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1pibiw33h4gwg0dzaqblr2a2x2m6cwsnz1i568kj593d9dnf82m7")))) + (build-system go-build-system) + (arguments + (list #:import-path "github.com/kovidgoyal/exiffix")) + (propagated-inputs + (list go-github-com-kovidgoyal-imaging + go-github-com-rwcarlsen-goexif)) + (home-page "https://github.com/kovidgoyal/exiffix") + (synopsis "EXIF orientation correction for images") + (description + "This package provides utilities for correcting image orientation based on +EXIF metadata. It's an alternative fork of +@url{https://github.com/edwvee/exiffix} maintained by Kitty comunity.") + (license license:expat))) + (define-public go-github-com-kpango-fastime (package (name "go-github-com-kpango-fastime")