summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrick Norton <patrick.147.norton@gmail.com>2026-01-06 09:36:02 -0500
committerSharlatan Hellseher <sharlatanus@gmail.com>2026-04-30 21:34:00 +0100
commit6c90f78eac8b31b6dda5d2fc2e728a1b34321b44 (patch)
tree859de79f68673e95b67896bcd5cac863343062a2
parent5bf2cffbf77cf636a868464c6c708878bcd0008f (diff)
gnu: Add go-github-com-tailscale-golang-x-crypto.
* gnu/packages/golang-crypto.scm (go-github-com-tailscale-golang-x-crypto): New variable. Relates-to: https://codeberg.org/guix/guix/pulls/5417 Change-Id: I9d71b923425b9ceb77aaa6b40dbc4ad712a009cf Reviewed-by: Arthur Rodrigues <arthurhdrodrigues@proton.me> Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
-rw-r--r--gnu/packages/golang-crypto.scm31
1 files changed, 31 insertions, 0 deletions
diff --git a/gnu/packages/golang-crypto.scm b/gnu/packages/golang-crypto.scm
index f8df519e9a..073889881b 100644
--- a/gnu/packages/golang-crypto.scm
+++ b/gnu/packages/golang-crypto.scm
@@ -3286,6 +3286,37 @@ to support the streaming mode required by Go's standard Hash interface.")
@url{https://www.rfc-editor.org/errata/rfc7512, errata} specifications.")
(license license:asl2.0)))
+(define-public go-github-com-tailscale-golang-x-crypto
+ (package
+ (name "go-github-com-tailscale-golang-x-crypto")
+ (version "0.91.0")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/tailscale/golang-x-crypto")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "0m9qkk48mihrkmfh1fzfhc39l8957qkpfx8qbw4xdjws7dy4vzbz"))))
+ (build-system go-build-system)
+ (arguments
+ (list
+ #:skip-build? #t
+ #:tests? #f ;Tests have broken package imports (expected as per readme)
+ #:import-path "github.com/tailscale/golang-x-crypto"))
+ (propagated-inputs
+ (list go-golang-org-x-crypto
+ go-golang-org-x-term
+ go-golang-org-x-sys
+ go-golang-org-x-net))
+ (home-page "https://github.com/tailscale/golang-x-crypto")
+ (synopsis "Supplementary Go crypto libraries")
+ (description
+ "This package holds supplementary Go cryptography libraries, it's a fork
+of @code{golang.org/x/crypto} maintained by Tailscale.")
+ (license license:bsd-3)))
+
(define-public go-github-com-tink-crypto-tink-go-v2
(package
(name "go-github-com-tink-crypto-tink-go-v2")