From 42d10bd20160165c5ad89216bdc1b3f6fbff7077 Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Tue, 16 Jan 2024 23:42:12 +0000 Subject: gnu: go-github-com-emersion-go-pgpmail: Move to (gnu packages golang-crypto). * gnu/packages/golang.scm (go-github-com-emersion-go-pgpmail): Move from here ... * gnu/packages/golang-crypto.scm: ... to here. * gnu/packages/mail.scm: Add (gnu packages golang-crypto) to used modules. Change-Id: I6e5d284bb045acb30881c79258573c6c79ecc512 --- gnu/packages/golang-crypto.scm | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) (limited to 'gnu/packages/golang-crypto.scm') diff --git a/gnu/packages/golang-crypto.scm b/gnu/packages/golang-crypto.scm index 3057e803ba..d1d6122f95 100644 --- a/gnu/packages/golang-crypto.scm +++ b/gnu/packages/golang-crypto.scm @@ -2,6 +2,7 @@ ;;; Copyright © 2018 Pierre Neidhardt ;;; Copyright © 2019, 2020 Leo Famulari ;;; Copyright © 2021 Raghav Gururajan +;;; Copyright © 2022 (unmatched-parenthesis ;;; Copyright © 2022, 2023 Nicolas Graves ;;; Copyright © 2023 Artyom V. Poptsov ;;; Copyright © 2023 Clément Lassieur @@ -123,6 +124,36 @@ is standardized in RFC 7539.") cryptographic standards that are not included in the Go standard library.") (license license:asl2.0)))) +(define-public go-github-com-emersion-go-pgpmail + (package + (name "go-github-com-emersion-go-pgpmail") + (version "0.2.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/emersion/go-pgpmail") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0ar26b0apw5bxn58qfn1a79cxigbmrqm1irh1rb7x57fydihc7wm")))) + (build-system go-build-system) + (arguments + (list ;; tests don't support our version of protonmail/go-crypto; see + ;; + #:tests? #f + #:import-path "github.com/emersion/go-pgpmail")) + (propagated-inputs + (list go-github-com-emersion-go-message + go-github-com-protonmail-go-crypto + go-golang-org-x-crypto + go-golang-org-x-text)) + (home-page "https://github.com/emersion/go-pgpmail") + (synopsis "PGP mail encryption for Go") + (description "The pgpmail package implements PGP encryption for e-mail +messages.") + (license license:expat))) + (define-public go-github-com-gaukas-godicttls (package (name "go-github-com-gaukas-godicttls") -- cgit v1.2.3