From 37109658a589285c3d70197adfdca20f1c48c355 Mon Sep 17 00:00:00 2001 From: Pierre Neidhardt Date: Mon, 9 Mar 2020 17:31:25 +0200 Subject: gnu: Add hyperledger-iroha-ed25519. * gnu/packages/hyperledger.scm (hyperledger-iroha-ed25519): New variable. --- gnu/packages/hyperledger.scm | 45 +++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 44 insertions(+), 1 deletion(-) diff --git a/gnu/packages/hyperledger.scm b/gnu/packages/hyperledger.scm index 158a66e898..71194fba38 100644 --- a/gnu/packages/hyperledger.scm +++ b/gnu/packages/hyperledger.scm @@ -1,5 +1,5 @@ ;;; GNU Guix --- Functional package management for GNU -;;; Copyright © 2019 Pierre Neidhardt +;;; Copyright © 2019, 2020 Pierre Neidhardt ;;; Copyright © 2019 Tobias Geerinckx-Rice ;;; ;;; This file is part of GNU Guix. @@ -93,3 +93,46 @@ solutions, underpinned by a modular architecture focusing on confidentiality and resiliency. It is designed to support pluggable implementations of different components.") (license asl2.0))) + +(define-public hyperledger-iroha-ed25519 + (package + (name "hyperledger-iroha-ed25519") + (version "2.0.2") + (home-page "https://github.com/hyperledger/iroha-ed25519") + (source (origin + (method git-fetch) + (uri (git-reference + (url home-page) + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "0kr1zwah8mhnpfrpk3h6hdafyqdl3ixhs7czdfscqv6vxqfiabc4")))) + (build-system cmake-build-system) + (native-inputs + `(("googletest" ,googletest))) + (arguments + `(#:tests? #f ; Tests don't build because CMake cannot find GTest main. + #:configure-flags '("-DHUNTER_ENABLED=OFF" + "-DBUILD=SHARED" + ;; TODO: x86_64 should use amd64-64-24k-pic but it + ;; fails to link when built as a shared library. + "-DEDIMPL=ref10" + "-DHASH=sha3_brainhub"))) + (synopsis "Ed25519 digital signature algorithm") + (description "This repository aims to provide modularized implementation +of the Ed25519 digital signature algorithm which is is described in +RFC8032 (@url{https://tools.ietf.org/html/rfc8032}). + +Originally Ed25519 consists of three modules: + +@itemize +@item digital signature algorithm itself +@item SHA512 hash function +@item random number generator, to generate keypairs +@end itemize + +This project offers at least two different C implementations for every +module. Every implementation can be replaced with another one at +link-time. New implementations can be added as well.") + (license asl2.0))) -- cgit v1.2.3 uix/commit/gnu/packages/xorg.scm?id=1dc184b4417e6cff06c63ecc9fca74c03be98058'>gnu: transset-df: Use HTTPS home page....Tobias Geerinckx-Rice 2020-01-21Merge branch 'master' into stagingMarius Bakke 2020-01-20gnu: xorg-server: Update to 1.20.7....Marius Bakke 2020-01-11gnu: xkeyboard-config: Update to 2.28....Marius Bakke 2020-01-11gnu: xinput: Update to 1.6.3....Marius Bakke 2020-01-05gnu: Add xcur2png....Leo Prikler 2019-12-11gnu: xf86-video-intel: Update to 2.99.917-15.f66d395....Marius Bakke 2019-12-04Merge branch 'staging'Marius Bakke 2019-12-03gnu: console-setup: Update to 1.194....Tobias Geerinckx-Rice 2019-12-03gnu: xclock: Don't use NAME in source URI....Tobias Geerinckx-Rice 2019-12-03gnu: xclock: Update to 1.0.9....Tobias Geerinckx-Rice 2019-12-01gnu: perl-x11-protocol-other: Update to 31....Tobias Geerinckx-Rice 2019-11-29gnu: xterm: Update to 351....Ludovic Courtès 2019-11-28Merge branch 'master' into stagingMarius Bakke 2019-11-28gnu: xorg-server: Update to 1.20.6....Marius Bakke 2019-11-15Merge branch 'master' into stagingMarius Bakke