From 846cb030bc3894c71cce10f21734fa4ef6b725d7 Mon Sep 17 00:00:00 2001 From: EuAndreh Date: Mon, 8 Feb 2021 23:59:55 -0300 Subject: Add libsha3 --- src/xyz/euandreh/packages/misc.scm | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 src/xyz/euandreh/packages/misc.scm (limited to 'src') diff --git a/src/xyz/euandreh/packages/misc.scm b/src/xyz/euandreh/packages/misc.scm new file mode 100644 index 0000000..a0f97ce --- /dev/null +++ b/src/xyz/euandreh/packages/misc.scm @@ -0,0 +1,38 @@ +(define-module (xyz euandreh packages misc) + #:use-module ((guix licenses) #:prefix license:) + #:use-module (guix packages) + #:use-module (guix git-download) + #:use-module (guix utils) + #:use-module (guix build-system gnu)) + +(define-public libsha3 + (package + (name "libsha3") + (version "bbef7d168632e121be2c59d496d51b3c54db908a") + #; + (source (local-file repository-root + #:recursive? #t + #:select? (git-predicate repository-root))) + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/EuAndreh/SHA3IUF") + (commit version))) + (sha256 + (base32 + "0z7xb5iq9h5h6k6qsk3a96bg7pi1x7q01m9hils00m3726qnqh4x")))) + (build-system gnu-build-system) + (arguments + `(#:make-flags + (list (string-append "CC=" ,(cc-for-target)) + (string-append "PREFIX=" (assoc-ref %outputs "out"))) + #:phases + (modify-phases %standard-phases + (delete 'configure)))) + (synopsis "C implementation of the SHA-3 and Keccak") + (description "SHA3IUF is a C implementations of SHA-3 and +Keccak with Init/Update/Finalize hashing API (NIST FIPS 202/Etherium).") + (home-page "https://github.com/brainhub/SHA3IUF") + (license license:x11))) + +(list libsha3) -- cgit v1.2.3