[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
04/13: gnu: Add go-github-com-aperturerobotics-jacobsa-crypto.
From: |
guix-commits |
Subject: |
04/13: gnu: Add go-github-com-aperturerobotics-jacobsa-crypto. |
Date: |
Mon, 6 Mar 2023 11:40:06 -0500 (EST) |
lfam pushed a commit to branch wip-go-updates
in repository guix.
commit 348776252384b44730303d6fa7764947ef7f2607
Author: Felix Lechner <felix.lechner@lease-up.com>
AuthorDate: Sun Mar 5 12:54:48 2023 -0800
gnu: Add go-github-com-aperturerobotics-jacobsa-crypto.
* gnu/packages/golang.scm (go-github-com-aperturerobotics-jacobsa-crypto):
New variable.
Signed-off-by: Leo Famulari <leo@famulari.name>
---
gnu/packages/golang.scm | 31 +++++++++++++++++++++++++++++++
1 file changed, 31 insertions(+)
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index 608b08ba29..312a314e39 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -1186,6 +1186,37 @@ networks where it would otherwise be blocked or heavily
throttled.")
"This is a repository containing Go bindings for writing FUSE file
systems.")
(license license:bsd-3))))
+(define-public go-github-com-aperturerobotics-jacobsa-crypto
+ (let ((commit "b1eb679742a8deed015a4406384eea6bd985d08a")
+ (revision "0"))
+ (package
+ (name "go-github-com-aperturerobotics-jacobsa-crypto")
+ (version (git-version "1.0.1" revision commit))
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url
"https://github.com/aperturerobotics/jacobsa-crypto")
+ (commit commit)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "16dxigj8m6q18xqsy72iq287rh4fw0y0b9yqlw0qkclb8379n1z2"))))
+ (build-system go-build-system)
+ (arguments
+ (list #:import-path "github.com/aperturerobotics/jacobsa-crypto"
+ ;; Source-only package.
+ #:tests? #f
+ #:phases
+ #~(modify-phases %standard-phases
+ ;; Source-only package.
+ (delete 'build))))
+ (home-page "https://github.com/aperturerobotics/jacobsa-crypto")
+ (synopsis "Cryptography missing from the Go standard library")
+ (description
+ "This repository contains Go packages related to cryptographic
standards that are
+not included in the Go standard library.")
+ (license license:asl2.0))))
+
(define-public go-github-com-kataras-golog
(package
(name "go-github-com-kataras-golog")
- 05/13: gnu: Add go-github-com-jacobsa-oglematchers., (continued)
- 05/13: gnu: Add go-github-com-jacobsa-oglematchers., guix-commits, 2023/03/06
- 06/13: gnu: Add go-github-com-jacobsa-oglemock., guix-commits, 2023/03/06
- 11/13: gnu: Add gocryptfs., guix-commits, 2023/03/06
- 12/13: gnu: Go 1.19: Update to 1.19.6., guix-commits, 2023/03/06
- 13/13: gnu: Go 1.20: Update to 1.20.1., guix-commits, 2023/03/06
- 07/13: gnu: Add go-github-com-jacobsa-ogletest., guix-commits, 2023/03/06
- 08/13: gnu: Add go-github-com-jacobsa-reqtrace., guix-commits, 2023/03/06
- 10/13: gnu: Add go-github-com-rfjakob-eme., guix-commits, 2023/03/06
- 03/13: gnu: Add go-github-com-hanwen-go-fuse-v2., guix-commits, 2023/03/06
- 09/13: gnu: Add go-github-com-pkg-xattr., guix-commits, 2023/03/06
- 04/13: gnu: Add go-github-com-aperturerobotics-jacobsa-crypto.,
guix-commits <=