diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-01-10 20:44:30 +0000 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-01-21 23:47:54 +0000 |
commit | 40f61f474cf609244e8baa43536f241ae6c45255 (patch) | |
tree | ebc6c9897a181b7a57227135ebf8dd9561ed5fce /gnu/packages/golang-crypto.scm | |
parent | ab117c09a57a5874a0535d2cfef9b38294af9c0c (diff) |
gnu: Add go-gitlab-com-nyarla-go-crypt.
* gnu/packages/golang-crypto.scm (go-gitlab-com-nyarla-go-crypt): New variable.
Change-Id: Ie28070f92468dbf8307f917159872844bbb375b3
Diffstat (limited to 'gnu/packages/golang-crypto.scm')
-rw-r--r-- | gnu/packages/golang-crypto.scm | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/gnu/packages/golang-crypto.scm b/gnu/packages/golang-crypto.scm index e7fb61c78a..8489dad95c 100644 --- a/gnu/packages/golang-crypto.scm +++ b/gnu/packages/golang-crypto.scm @@ -2197,6 +2197,30 @@ vectorized version of BLAKE3 implementation in Golang.") Congruential Generator} (PCG) algorithm.") (license license:cc0))) +(define-public go-gitlab-com-nyarla-go-crypt + (package + (name "go-gitlab-com-nyarla-go-crypt") + (version "0.0.0-20160106005555-d9a5dc2b789b") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gitlab.com/nyarla/go-crypt.git") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0249hbwvhy0xywi9b5k8964km27pvfkr3jvliy3azri6vnyvkkx1")))) + (build-system go-build-system) + (arguments + (list + #:import-path "gitlab.com/nyarla/go-crypt")) + (home-page "https://gitlab.com/nyarla/go-crypt") + (synopsis "Implementation of @code{crypt(3)} in Golang") + (description + "Package crypt is a implementation of crypt(3) by golang, originated from +https://code.google.com/p/go-crypt.") + (license license:bsd-3))) + (define-public go-gitlab-com-yawning-bsaes-git (package (name "go-gitlab-com-yawning-bsaes-git") |