guix-patches
[Top][All Lists]
Advanced

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

[bug#55903] [PATCH v10 40/41] gnu: Add go-github-com-emersion-go-mbox.


From: (
Subject: [bug#55903] [PATCH v10 40/41] gnu: Add go-github-com-emersion-go-mbox.
Date: Mon, 12 Sep 2022 19:43:39 +0100

* gnu/packages/golang.scm (go-github-com-emersion-go-mbox): New
  variable.
---
 gnu/packages/golang.scm | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)

diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index 25fb615765..46de3ff847 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -11015,3 +11015,26 @@ (define-public go-github-com-syndtr-goleveldb-leveldb
      "This package provides a Go implementation of the LevelDB key/value
 storage system.")
     (license license:bsd-2)))
+
+(define-public go-github-com-emersion-go-mbox
+  (package
+    (name "go-github-com-emersion-go-mbox")
+    (version "1.0.3")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://github.com/emersion/go-mbox";)
+                    (commit (string-append "v" version))))
+              (file-name (git-file-name name version))
+              (sha256
+               (base32
+                "0vnadh2khx7sxn0irrd8gz8ra02x7ij0q8zglq3rqffqil06nliv"))))
+    (build-system go-build-system)
+    (arguments
+     (list #:import-path "github.com/emersion/go-mbox"))
+    (home-page "https://github.com/emersion/go-mbox";)
+    (synopsis "Go library for handling @code{mbox} files")
+    (description
+     "This package provides a library for parsing and formatting
+@code{mbox} files.")
+    (license license:expat)))
-- 
2.37.3






reply via email to

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