mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: Add libblake3.
* gnu/packages/crypto.scm (libblake3): New variable. Change-Id: Ic486b3a4727563e562e499d3057e48c1a163983e
This commit is contained in:
parent
b219249717
commit
221ad0255d
1 changed files with 30 additions and 0 deletions
|
@ -107,6 +107,36 @@
|
|||
#:use-module (srfi srfi-1)
|
||||
#:use-module (srfi srfi-26))
|
||||
|
||||
(define-public libblake3
|
||||
(package
|
||||
(name "libblake3")
|
||||
(version "1.8.2")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/BLAKE3-team/BLAKE3")
|
||||
(commit version)))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "1pm7285insrmpfwwal8rnp3yhvc6s2ki8b6ccmbh2qfnnl95a010"))))
|
||||
(build-system cmake-build-system)
|
||||
(arguments
|
||||
(list
|
||||
#:configure-flags
|
||||
#~(list "-DBUILD_SHARED_LIBS=ON")
|
||||
#:tests? #f ; XXX: there are some rust tests in the root.
|
||||
#:phases
|
||||
#~(modify-phases %standard-phases
|
||||
(add-after 'unpack 'chdir
|
||||
(lambda _
|
||||
(chdir "c"))))))
|
||||
(home-page "https://github.com/BLAKE3-team/BLAKE3")
|
||||
(synopsis "Official C implementation of BLAKE3")
|
||||
(description "This package provides a cryptographic hash function that is
|
||||
fast, secure, parallelizable, capable of incremental updates.")
|
||||
(license (list license:asl2.0 license:cc0)))) ; dual licensed
|
||||
|
||||
(define-public libdecaf
|
||||
(package
|
||||
(name "libdecaf")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue