all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Jean SIMARD <woshilapin@tuziwo.info>
To: 71780@debbugs.gnu.org
Cc: Jean SIMARD <woshilapin@tuziwo.info>, sharlatanus@gmail.com
Subject: [bug#71780] [PATCH v2 7/7] gnu: Add hydroxide.
Date: Sat, 29 Jun 2024 21:37:33 +0000	[thread overview]
Message-ID: <e0a2150b04535a9cadf65023404494fde6198338.1719696984.git.woshilapin@tuziwo.info> (raw)
In-Reply-To: <fa9d84750144788e4757aba949592f9475657bf9.1719696984.git.woshilapin@tuziwo.info>

* gnu/packages/mail.scm (hydroxide): New variable.

Change-Id: Ic20d8d3d22afc4a580094bed64d0aa5059a1a9cf
---
 gnu/packages/mail.scm | 37 +++++++++++++++++++++++++++++++++++++
 1 file changed, 37 insertions(+)

diff --git a/gnu/packages/mail.scm b/gnu/packages/mail.scm
index de6d21e7cc..dd813baef6 100644
--- a/gnu/packages/mail.scm
+++ b/gnu/packages/mail.scm
@@ -56,6 +56,7 @@
 ;;; Copyright © 2023 Arjan Adriaanse <arjan@adriaan.se>
 ;;; Copyright © 2023 Wilko Meyer <w@wmeyer.eu>
 ;;; Copyright © 2024 Benjamin Slade <slade@lambda-y.net>
+;;; Copyright © 2024 Jean Simard <woshilapin@tuziwo.info>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -5121,3 +5122,39 @@ (define-public aerc
     ;; <https://lists.sr.ht/~rjarry/aerc-devel/%3Cb5cb213a7d0c699a886971658c2476
     ;; 1073eb2391%40disroot.org%3E>
     (license license:gpl3+)))
+
+(define-public hydroxide
+  (package
+    (name "hydroxide")
+    (version "0.2.28")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/emersion/hydroxide")
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "1a7qga9qxwcdjimra9d9jnkds1iwh2sqk6241p4di6awli9zksv1"))))
+    (build-system go-build-system)
+    (arguments
+     (list
+      #:import-path "github.com/emersion/hydroxide/cmd/hydroxide"
+      #:unpack-path "github.com/emersion/hydroxide"))
+    (inputs (list go-github-com-protonmail-go-crypto
+                  go-github-com-boltdb-bolt
+                  go-github-com-emersion-go-bcrypt
+                  go-github-com-emersion-go-imap
+                  go-github-com-emersion-go-mbox
+                  go-github-com-emersion-go-message
+                  go-github-com-emersion-go-smtp-v0.18
+                  go-github-com-emersion-go-vcard
+                  go-github-com-emersion-go-webdav
+                  go-golang-org-x-crypto
+                  go-golang-org-x-term))
+    (home-page "https://github.com/emersion/hydroxide")
+    (synopsis "Third-party, open-source ProtonMail bridge")
+    (description "A third-party, open-source ProtonMail bridge.
+     For power users only, designed to run on a server.
+     hydroxide supports CardDAV, IMAP and SMTP.")
+    (license license:expat)))
-- 
2.41.0






  parent reply	other threads:[~2024-06-29 21:38 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-06-25 12:51 [bug#71780] [PATCH 0/3] add hydroxide package Jean SIMARD
2024-06-26  7:32 ` [bug#71780] [PATCH 1/3] gnu: update go-github-com-emersion-go-sasl Jean SIMARD
2024-06-26  7:33 ` [bug#71780] [PATCH 2/3] gnu: update go-github-com-protonmail-go-crypto Jean SIMARD
2024-06-26  7:33 ` [bug#71780] [PATCH 3/3] gnu: add hydroxide Jean SIMARD
2024-06-29 12:53   ` woshilapin
2024-06-29 13:47     ` Sharlatan Hellseher
2024-06-26 14:31 ` [bug#71780] [PATCH 0/3] add hydroxide package Sharlatan Hellseher
2024-06-29 21:36 ` [bug#71780] [PATCH v2 1/7] gnu: go-github-com-emersion-go-pgpmail: Update to 0.2.1 Jean SIMARD
2024-06-29 21:36   ` [bug#71780] [PATCH v2 2/7] gnu: go-github-com-protonmail-go-crypto: Update to 0.0.0-20230923063757-afb1ddc0824c Jean SIMARD
2024-06-29 21:36   ` [bug#71780] [PATCH v2 3/7] gnu: Add go-github-com-boltdb-bolt Jean SIMARD
2024-06-29 21:37   ` [bug#71780] [PATCH v2 4/7] gnu: Add go-github-com-emersion-go-bcrypt Jean SIMARD
2024-06-29 21:37   ` [bug#71780] [PATCH v2 5/7] gnu: Add go-github-com-emersion-go-vcard Jean SIMARD
2024-06-29 21:37   ` [bug#71780] [PATCH v2 6/7] gnu: Add go-github-com-emersion-go-smtp-v0.18 Jean SIMARD
2024-06-29 21:37   ` Jean SIMARD [this message]
2024-06-29 21:43     ` [bug#71780] [PATCH v2 7/7] gnu: Add hydroxide woshilapin

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=e0a2150b04535a9cadf65023404494fde6198338.1719696984.git.woshilapin@tuziwo.info \
    --to=woshilapin@tuziwo.info \
    --cc=71780@debbugs.gnu.org \
    --cc=sharlatanus@gmail.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.