gnu: Add go-github-com-pion-randutil.

* gnu/packages/golang-crypto.scm (go-github-com-pion-randutil): New variable.

Change-Id: Ifb190df843022d556bada7927b180c2518f5869d
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
This commit is contained in:
Artyom V. Poptsov 2024-05-07 22:58:12 +03:00 committed by Sharlatan Hellseher
parent 6d36befee8
commit cc97cec5dd
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -14,7 +14,7 @@
;;; Copyright © 2022 Efraim Flashner <efraim@flashner.co.il>
;;; Copyright © 2022 Tobias Geerinckx-Rice <me@tobias.gr>
;;; Copyright © 2022, 2023 Nicolas Graves <ngraves@ngraves.fr>
;;; Copyright © 2023 Artyom V. Poptsov <poptsov.artyom@gmail.com>
;;; Copyright © 2023, 2024 Artyom V. Poptsov <poptsov.artyom@gmail.com>
;;; Copyright © 2023 Benjamin <benjamin@uvy.fr>
;;; Copyright © 2023 Clément Lassieur <clement@lassieur.org>
;;; Copyright © 2023 Felix Lechner <felix.lechner@lease-up.com>
@ -935,6 +935,29 @@ (define-public go-github-com-operatorfoundation-ed25519
algorithm.")
(license license:bsd-3))))
(define-public go-github-com-pion-randutil
(package
(name "go-github-com-pion-randutil")
(version "v0.1.0")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/pion/randutil")
(commit (go-version->git-ref version))))
(file-name (git-file-name name version))
(sha256
(base32 "098isjyvyb8jhrrr57xi45g5m35vb1l92dm5wcy7g2q9x55lvxg5"))))
(build-system go-build-system)
(arguments
(list
#:import-path "github.com/pion/randutil"))
(home-page "https://github.com/pion/randutil")
(synopsis "Helper library for cryptographic and mathmatical randoms")
(description
"This package provides primitives for generating random values.")
(license license:expat)))
(define-public go-github-com-protonmail-go-crypto
(package
(name "go-github-com-protonmail-go-crypto")