guix-commits
[Top][All Lists]
Advanced

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

17/20: gnu: Add go-github-com-tdewolff-hasher.


From: guix-commits
Subject: 17/20: gnu: Add go-github-com-tdewolff-hasher.
Date: Wed, 6 Sep 2023 01:27:56 -0400 (EDT)

apteryx pushed a commit to branch master
in repository guix.

commit e90b54ee99d78d801b497053c937c002dc19aed3
Author: Hilton Chain <hako@ultrarare.space>
AuthorDate: Thu Aug 10 19:43:11 2023 +0800

    gnu: Add go-github-com-tdewolff-hasher.
    
    * gnu/packages/golang.scm (go-github-com-tdewolff-hasher): New variable.
    
    Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
---
 gnu/packages/golang.scm | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)

diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index 7e294f9eee..9fc7bd9031 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -3644,6 +3644,32 @@ per-goroutine.")
     (description "The @code{walker} function is a faster, parallel version, of
 @code{filepath.Walk}")))
 
+(define-public go-github-com-tdewolff-hasher
+  (package
+    (name "go-github-com-tdewolff-hasher")
+    (version "0.0.0-20210521220142-bc97f602bca2")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://github.com/tdewolff/hasher";)
+                    (commit (go-version->git-ref version))))
+              (file-name (git-file-name name version))
+              (sha256
+               (base32
+                "12dmxpmdy2z7c2z7qv2mv2aq4hyvjncb6fzr0ymg3y5bfjvl4dcw"))))
+    (build-system go-build-system)
+    (arguments
+     (list #:import-path "github.com/tdewolff/hasher"))
+    (native-inputs
+     (list go-github-com-cespare-mph
+           go-github-com-dgryski-go-mph))
+    (home-page "https://github.com/tdewolff/hasher";)
+    (synopsis "Go known-keys fast-lookup map generator")
+    (description
+     "Hasher is a tool to automate the creation of methods and tables for a
+@code{string} to @code{uint32} mapper.")
+    (license license:bsd-3)))
+
 (define-public go-github-com-tdewolff-minify-v2
   (package
     (name "go-github-com-tdewolff-minify-v2")



reply via email to

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