guix_mirror_bot pushed a commit to branch master
in repository guix.

commit 3429a69ecaa23c1f742b8a317ea113d2fc192564
Author: Patrick Norton <[email protected]>
AuthorDate: Mon Nov 24 15:09:07 2025 -0500

    gnu: Add go-github-com-henrybear327-proton-api-bridge.
    
    * gnu/packages/golang-web.scm 
(go-github-com-henrybear327-proton-api-bridge): New variable.
    
    Change-Id: I01dbdf84bfdb9caa561bcb34b861a0a1bf85fb9d
    Signed-off-by: Sharlatan Hellseher <[email protected]>
---
 gnu/packages/golang-web.scm | 34 ++++++++++++++++++++++++++++++++++
 1 file changed, 34 insertions(+)

diff --git a/gnu/packages/golang-web.scm b/gnu/packages/golang-web.scm
index b14a704fdf..1ea3f19f45 100644
--- a/gnu/packages/golang-web.scm
+++ b/gnu/packages/golang-web.scm
@@ -6804,6 +6804,40 @@ Features:
      "Package proton implements types for accessing the Proton API.")
     (license license:expat)))
 
+(define-public go-github-com-henrybear327-proton-api-bridge
+  (package
+    (name "go-github-com-henrybear327-proton-api-bridge")
+    (version "1.0.0")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+              (url "https://github.com/henrybear327/Proton-API-Bridge";)
+              (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "0721g2wdgm13vlg6sl4v0a7mp6sfl6fpaqv4zc3nq0y7a6yp0976"))))
+    (build-system go-build-system)
+    (arguments
+     (list
+      #:tests? #f ;Tests require username/password
+      #:embed-files
+      #~(list "children" "nodes" "text")
+      #:import-path "github.com/henrybear327/Proton-API-Bridge"))
+    (propagated-inputs
+     (list go-golang-org-x-sync
+           go-github-com-relvacode-iso8601
+           go-github-com-henrybear327-go-proton-api
+           go-github-com-protonmail-gopenpgp-v2
+           go-github-com-protonmail-gluon))
+    (home-page "https://github.com/henrybear327/Proton-API-Bridge";)
+    (synopsis "Proton API Bridge")
+    (description
+     "This package implements a funtionality of a bridge to the Proton API,
+ with the goal of providing enough functionality to be a usable backend for
+projects like rclone.")
+    (license license:expat)))
+
 (define-public go-github-com-hetznercloud-hcloud-go-v2
   (package
     (name "go-github-com-hetznercloud-hcloud-go-v2")

Reply via email to