guix-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[bug#39943] [PATCH 2/3] gnu: Add hyperledger-iroha-ed25519.


From: Pierre Neidhardt
Subject: [bug#39943] [PATCH 2/3] gnu: Add hyperledger-iroha-ed25519.
Date: Fri, 6 Mar 2020 10:41:29 +0100

* gnu/packages/hyperledger.scm (hyperledger-iroha-ed25519): New variable.
---
 gnu/packages/hyperledger.scm | 62 ++++++++++++++++++++++++++++++++++--
 1 file changed, 60 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/hyperledger.scm b/gnu/packages/hyperledger.scm
index 158a66e898..1fb76e3504 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 <address@hidden>
+;;; Copyright © 2019, 2020 Pierre Neidhardt <address@hidden>
 ;;; Copyright © 2019 Tobias Geerinckx-Rice <address@hidden>
 ;;;
 ;;; This file is part of GNU Guix.
@@ -20,16 +20,18 @@
 (define-module (gnu packages hyperledger)
   #:use-module (ice-9 match)
   #:use-module (guix build-system go)
-  #:use-module (guix build-system trivial)
+  #:use-module (guix build-system cmake)
   #:use-module (guix packages)
   #:use-module (guix download)
   #:use-module (guix git-download)
   #:use-module (guix licenses)
   #:use-module (gnu packages)
   #:use-module (gnu packages base)
+  #:use-module (gnu packages check)
   #:use-module (gnu packages curl)
   #:use-module (gnu packages docker)
   #:use-module (gnu packages golang)
+  #:use-module (gnu packages tls)
   #:use-module (gnu packages version-control))
 
 (define-public hyperledger-fabric
@@ -93,3 +95,59 @@ 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 ;; TODO: Public or not?
+  (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))
+              (patches
+               (search-patches
+                "hyperledger-iroha-ed25519-cmake-remove-hunter-gate.patch"))
+              ;; (modules '((guix build utils)))
+              ;; (snippet '(delete-file "./cmake/dependencies.cmake"))
+              (sha256
+               (base32
+                "0kr1zwah8mhnpfrpk3h6hdafyqdl3ixhs7czdfscqv6vxqfiabc4"))))
+    (build-system cmake-build-system)
+    (inputs
+     `(("openssl" ,openssl)))
+    (native-inputs
+     `(("googletest" ,googletest)))
+    (arguments
+     `(#:tests? #f                      ; Tests don't build because CMake 
cannot find GTest main.
+       #:configure-flags '("-DTESTING=OFF"
+                           "-DBUILD=SHARED"
+                           "-DEDIMPL=ref10" ; TODO: Use x86_64 should use 
amd64-64-24k-pic but it fails to link. 
https://github.com/hyperledger/iroha-ed25519/issues/6.
+                           "-DHASH=sha3_brainhub")
+       #:phases
+       (modify-phases %standard-phases
+         (add-after 'unpack 'remove-hunter-gate-fetch
+           (lambda _
+             (substitute* "cmake/dependencies.cmake"
+               ;; (("hunter_add_package\\(benchmark\\)") "")
+               (("hunter_add_package\\(GTest\\)") ""))
+             #t)))))
+    (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)))
-- 
2.25.1






reply via email to

[Prev in Thread] Current Thread [Next in Thread]