summaryrefslogtreecommitdiff
path: root/gnu/packages/golang-xyz.scm
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-02-28 10:02:48 +0000
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-05-26 16:50:28 +0100
commitc415f84747dd9b3023eb53e32f5eb4090397392c (patch)
tree1cd6a433f4fff9b8361445b713f31d567d624783 /gnu/packages/golang-xyz.scm
parentb60df48965b2bc04af30c0e560752114e8b79ac1 (diff)
gnu: Add go-github-com-rwcarlsen-goexif.
* gnu/packages/golang-xyz.scm (go-github-com-rwcarlsen-goexif): New variable. Change-Id: Ib8cae5479ac81691946630f066038b94150fbad6
Diffstat (limited to 'gnu/packages/golang-xyz.scm')
-rw-r--r--gnu/packages/golang-xyz.scm40
1 files changed, 40 insertions, 0 deletions
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index d27bbcdbb7..ae3cf0ba58 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -14225,6 +14225,46 @@ logging.")
(arguments
(list #:import-path "github.com/russross/blackfriday/v2"))))
+(define-public go-github-com-rwcarlsen-goexif
+ ;; No release or version tag, Golang pseudo version:
+ ;; 0.0.0-20190401172101-9e8deecbddbd.
+ (let ((commit "9e8deecbddbd4989a3e8d003684b783412b41e7a")
+ (revision "0"))
+ (package
+ (name "go-github-com-rwcarlsen-goexif")
+ (version (git-version "0.0.0" revision commit))
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/rwcarlsen/goexif")
+ (commit commit)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "1drqhzplg72lvrf3qmb9awbggnjqp23hwn2pgvksi3spv17kc9h2"))))
+ (build-system go-build-system)
+ (arguments
+ (list
+ #:skip-build? #t
+ #:import-path "github.com/rwcarlsen/goexif"))
+ (home-page "https://github.com/rwcarlsen/goexif")
+ (synopsis "Decode embedded EXIF meta data from image files")
+ (description
+ "This package provides decoding of basic EXIF and TIFF encoded data.
+Functionality is split into packages:
+@itemize
+
+@item @code{exif} - implements decoding of EXIF data as defined in the EXIF
+2.2 specification (http://www.exif.org/Exif2-2.PDF)
+
+@item @code{mknote} - provides makernote parsers that can be used with
+@code{goexif/exif}
+
+@item @code{tiff} - implements TIFF decoding as defined in TIFF 6.0
+specification at http://partners.adobe.com/public/developer/en/tiff/TIFF6.pdf
+
+@end itemize")
+ (license license:bsd-2))))
(define-public go-github-com-ryanuber-columnize
(package