guix-commits
[Top][All Lists]
Advanced

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

branch master updated: gnu: Add go-github-com-operatorfoundation-ed25519


From: guix-commits
Subject: branch master updated: gnu: Add go-github-com-operatorfoundation-ed25519.
Date: Thu, 25 Feb 2021 08:03:23 -0500

This is an automated email from the git hooks/post-receive script.

roptat pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new a2ece4d  gnu: Add go-github-com-operatorfoundation-ed25519.
a2ece4d is described below

commit a2ece4da1fdccb9e94681e38a3f3a79b0d43e061
Author: LibreMiami <packaging-guix@libremiami.org>
AuthorDate: Thu Feb 25 01:46:15 2021 +0000

    gnu: Add go-github-com-operatorfoundation-ed25519.
    
    * gnu/packages/golang.scm (go-github-com-operatorfoundation-ed25519):
    New variable.
    
    Co-authored-by: jgart <jgart@dismail.de>
    Co-authored-by: Julien Lepiller <julien@lepiller.eu>
    Co-authored-by: Ryan Prior <rprior@protonmail.com>
    Co-authored-by: Raghav Gururajan <rg@raghavgururajan.name>
    Co-authored-by: Yasuaki Kudo <yasu@yasuaki.com>
    Co-authored-by: Stephen Paul Weber <singpolyma@singpolyma.net>
    Signed-off-by: Julien Lepiller <julien@lepiller.eu>
---
 gnu/packages/golang.scm | 31 +++++++++++++++++++++++++++++++
 1 file changed, 31 insertions(+)

diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index 1b4be8a..e54496c 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -6739,3 +6739,34 @@ compressed streams in Go.")
     (synopsis "Go library to get configuration values from gitconfig")
     (description "@{gitconfig} is a package to get configuration values from 
gitconfig.")
     (license license:expat)))
+
+(define-public go-github-com-operatorfoundation-ed25519
+  (let ((commit "b22b4bd3ddef042eec45f3ee135cd40281fde2b4")
+        (revision "0"))
+    (package
+      (name "go-github-com-operatorfoundation-ed25519")
+      (version (git-version "0.0.0" revision commit))
+      (source (origin
+                (method git-fetch)
+                (uri (git-reference
+                       (url "https://github.com/OperatorFoundation/ed25519";)
+                       (commit commit)))
+                (file-name (git-file-name name version))
+                (sha256
+                 (base32
+                  "0xrzqrjlghkgd1cy5rj4khryn4f59vas2vzrxc6d8jpj5ijf3xkv"))))
+      (build-system go-build-system)
+      (arguments
+       `(#:import-path "github.com/OperatorFoundation/ed25519"
+         #:phases
+         (modify-phases %standard-phases
+           (add-before 'install 'remove-test-data
+             (lambda* (#:key import-path #:allow-other-keys)
+               (delete-file-recursively
+                 (string-append "src/" import-path "/testdata"))
+               #t)))))
+      (home-page "https://github.com/OperatorFoundation/ed25519";)
+      (synopsis "Ed25519 for go")
+      (description "Package ed25519 implements the Ed25519 signature
+algorithm.")
+      (license license:bsd-3))))



reply via email to

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