From 65406213eba2074ec9092c82b111a04fcc0e8473 Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Sat, 29 Nov 2025 23:31:58 +0000 Subject: [PATCH] gnu: Add go-github-com-protonmail-go-mbox. * gnu/packages/golang-xyz.scm (go-github-com-protonmail-go-mbox): New variable. Change-Id: Ia4eb42e24f0ef51dc975b404d5b08a0b49c9c982 --- gnu/packages/golang-xyz.scm | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm index d50a121c5b952b4e2578f1b055042c9ff07bbc32..0c24f30008e43c7bba00be4d1b0397c76b4d6d7f 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm @@ -19022,6 +19022,31 @@ and bash completion for the go command line.") "This package provides a wrapper round runit service status.") (license license:expat))) +(define-public go-github-com-protonmail-go-mbox + (package + (name "go-github-com-protonmail-go-mbox") + (version "1.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/ProtonMail/go-mbox") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0j82rmigq8ayjgn3a5pfhmb6mghy30nrix30kbjdjf498kxvhlgv")))) + (build-system go-build-system) + (arguments + (list + #:import-path "github.com/ProtonMail/go-mbox")) + (home-page "https://github.com/ProtonMail/go-mbox") + (synopsis "Mbox files into messages parser in Golang") + (description + "This package implements functionality for parsing and formating the +mbox file format. It's an alternative fork of +https://github.com/emersion/go-mbox.") + (license license:expat))) + (define-public go-github-com-pterm-pterm (package (name "go-github-com-pterm-pterm")