mirror of
https://codeberg.org/guix/guix.git
synced 2026-01-25 03:55:08 -06:00
gnu: Add sha3.
* gnu/packages/lisp-xyz.scm (cl-sha3, ecl-sha3, sbcl-sha3): New variables. Change-Id: I41a03090ae6a95322ec7c44bdfeffdb69a8f9577 Signed-off-by: Omar Bassam <omar.bassam88@gmail.com>
This commit is contained in:
parent
1c477aea8d
commit
9d99bc7280
1 changed files with 33 additions and 0 deletions
|
|
@ -29146,6 +29146,39 @@ little slower than it could be.")
|
|||
(define-public clasp-sha1
|
||||
(sbcl-package->clasp-package sbcl-sha1))
|
||||
|
||||
(define-public sbcl-sha3
|
||||
(let ((commit "a4baa05e72ee05aba545152a2ffe2e46fbfa3d4b")
|
||||
(revision "0"))
|
||||
(package
|
||||
(name "sbcl-sha3")
|
||||
(version (git-version "1.1.2" revision commit))
|
||||
(home-page "https://github.com/pmai/sha3")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/pmai/sha3")
|
||||
(commit (string-append "release-" version))))
|
||||
(file-name (git-file-name "cl-sha3" version))
|
||||
(sha256
|
||||
(base32 "0jl59js4n1gc08j2bcwf0d1gy82lf7g53b639dwh6b0milbqh7gz"))))
|
||||
(build-system asdf-build-system/sbcl)
|
||||
(synopsis "SHA-3 implementation for Common Lisp")
|
||||
(description
|
||||
"This library is an implementation of the Secure Hash Algorithm 3 (SHA-3),
|
||||
also known as Keccak. The implementation is constrained to messages with an integral
|
||||
number of octets,i.e. sub-byte length messages are not supported.")
|
||||
(license license:expat))))
|
||||
|
||||
(define-public cl-sha3
|
||||
(sbcl-package->cl-source-package sbcl-sha3))
|
||||
|
||||
(define-public ecl-sha3
|
||||
(sbcl-package->ecl-package sbcl-sha3))
|
||||
|
||||
(define-public clasp-sha3
|
||||
(sbcl-package->clasp-package sbcl-sha3))
|
||||
|
||||
(define-public sbcl-shadow
|
||||
(let ((commit "b2031adbfba3579b48c9d39ad997e19b79b6852f")
|
||||
(revision "1"))
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue