guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

211/223: gnu: Add go-github-com-rwcarlsen-goexif.


From: guix-commits
Subject: 211/223: gnu: Add go-github-com-rwcarlsen-goexif.
Date: Sat, 15 Mar 2025 04:59:39 -0400 (EDT)

sharlatan pushed a commit to branch go-team
in repository guix.

commit 41bdbf1ed8dd7c9d32f8474d8c0ddd902432a8a3
Author: Sharlatan Hellseher <sharlatanus@gmail.com>
AuthorDate: Fri Feb 28 10:02:48 2025 +0000

    gnu: Add go-github-com-rwcarlsen-goexif.
    
    * gnu/packages/golang-xyz.scm (go-github-com-rwcarlsen-goexif): New 
variable.
    
    Change-Id: Ib8cae5479ac81691946630f066038b94150fbad6
---
 gnu/packages/golang-xyz.scm | 40 ++++++++++++++++++++++++++++++++++++++++
 1 file changed, 40 insertions(+)

diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index 722e2560db..09d4f085bb 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -14192,6 +14192,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



reply via email to

[Prev in Thread] Current Thread [Next in Thread]