diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-01-16 23:30:57 +0000 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-01-28 23:21:04 +0000 |
commit | 7ab2ae0ee7d24a8efcafcff958758800fcaa7410 (patch) | |
tree | 920a1a16b99dd347312d67f55f3dbf578503845e /gnu/packages/golang-crypto.scm | |
parent | f7ca047b6dd6f7d43a927f1b189be7a3a4e04581 (diff) | |
download | guix-7ab2ae0ee7d24a8efcafcff958758800fcaa7410.tar.gz |
gnu: go-github-com-aperturerobotics-jacobsa-crypto: Move to (gnu packages golang-crypto).
* gnu/packages/golang.scm (go-github-com-aperturerobotics-jacobsa-crypto): Move from here ... * gnu/packages/golang-crypto.scm: ... to here. * gnu/packages/file-systems.scm: Add (gnu packages golang-crypto) to used modules. Change-Id: I9562a3a3054b7d361758c5e5984891970f191ada
Diffstat (limited to 'gnu/packages/golang-crypto.scm')
-rw-r--r-- | gnu/packages/golang-crypto.scm | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/gnu/packages/golang-crypto.scm b/gnu/packages/golang-crypto.scm index 860ee82727..3bcf86673d 100644 --- a/gnu/packages/golang-crypto.scm +++ b/gnu/packages/golang-crypto.scm @@ -5,6 +5,7 @@ ;;; Copyright © 2022, 2023 Nicolas Graves <ngraves@ngraves.fr> ;;; Copyright © 2023 Artyom V. Poptsov <poptsov.artyom@gmail.com> ;;; Copyright © 2023 Clément Lassieur <clement@lassieur.org> +;;; Copyright © 2023 Felix Lechner <felix.lechner@lease-up.com> ;;; ;;; This file is part of GNU Guix. ;;; @@ -92,6 +93,36 @@ Bernstein. The most common ChaCha variant is ChaCha20 (20 rounds). ChaCha20 is standardized in RFC 7539.") (license license:expat)))) +(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-gaukas-godicttls (package (name "go-github-com-gaukas-godicttls") |