guix-commits
[Top][All Lists]
Advanced

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

04/10: gnu: Add go-github-com-jbenet-go-random.


From: guix-commits
Subject: 04/10: gnu: Add go-github-com-jbenet-go-random.
Date: Sat, 16 Mar 2024 20:11:25 -0400 (EDT)

sharlatan pushed a commit to branch master
in repository guix.

commit 32fd2776429b5cd1fb5094532f490e5d31415f6e
Author: Artyom V. Poptsov <poptsov.artyom@gmail.com>
AuthorDate: Fri Mar 8 21:23:27 2024 +0300

    gnu: Add go-github-com-jbenet-go-random.
    
    * gnu/packages/golang-xyz.scm (go-github-com-jbenet-go-random): New 
variable.
    
    Change-Id: I7b7f510af61f4bf79aa633ffaa4bd4852f55fc47
    Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
---
 gnu/packages/golang-xyz.scm | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)

diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index 3f5cdc404d..cd3fbb8098 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -1035,6 +1035,32 @@ increment versions.")
 @end itemize")
     (license license:bsd-3)))
 
+(define-public go-github-com-jbenet-go-random
+  (package
+    (name "go-github-com-jbenet-go-random")
+    (version "0.0.0-20190219211222-123a90aedc0c")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/jbenet/go-random";)
+             (commit (go-version->git-ref version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "0kgx19m8p76rmin8s8y6j1padciv1dx37qzy7jkh9bw49ai3haw3"))))
+    (build-system go-build-system)
+    (arguments
+     (list
+      #:import-path "github.com/jbenet/go-random"))
+    (propagated-inputs
+     (list go-github-com-dustin-go-humanize))
+    (home-page "https://github.com/jbenet/go-random";)
+    (synopsis "Go library and a program that outputs randomness")
+    (description
+     "This is a Unix utility that outputs randomness.  It is a thin
+wrapper around @code{crypto/rand}.")
+    (license license:expat)))
+
 (define-public go-github-com-jbenet-go-temp-err-catcher
   (package
     (name "go-github-com-jbenet-go-temp-err-catcher")



reply via email to

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