guix-commits
[Top][All Lists]
Advanced

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

04/05: gnu: Add go-github-com-willf-bloom.


From: guix-commits
Subject: 04/05: gnu: Add go-github-com-willf-bloom.
Date: Tue, 17 Mar 2020 16:04:36 -0400 (EDT)

lfam pushed a commit to branch master
in repository guix.

commit 79405c030f802df3631a6b3617b4a9ea284b638d
Author: Leo Famulari <address@hidden>
AuthorDate: Mon Mar 2 15:13:16 2020 -0500

    gnu: Add go-github-com-willf-bloom.
    
    * gnu/packages/golang.scm (go-github-com-willf-bloom): New variable.
---
 gnu/packages/golang.scm | 25 +++++++++++++++++++++++++
 1 file changed, 25 insertions(+)

diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index b0dd5ff..f684470 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -3417,3 +3417,28 @@ are a mapping between non-negative integers and boolean 
values focused on
 efficient space usage.")
     (home-page "https://github.com/willf/bitset";)
     (license license:bsd-3)))
+
+(define-public go-github-com-willf-bloom
+  (package
+    (name "go-github-com-willf-bloom")
+    (version "2.0.3")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                     (url "https://github.com/willf/bloom";)
+                     (commit (string-append "v" version))))
+              (file-name (git-file-name name version))
+              (sha256
+               (base32
+                "0ygan8pgcay7wx3cs3ja8rdqj7nly7v3and97ddcc66020jxchzg"))))
+    (build-system go-build-system)
+    (arguments
+     '(#:import-path "github.com/willf/bloom"))
+    (propagated-inputs
+     `(("go-github-com-spaolacci-murmur3" ,go-github-com-spaolacci-murmur3)
+       ("go-github-com-willf-bitset" ,go-github-com-willf-bitset)))
+    (synopsis "Bloom filters in Go")
+    (description "This package provides a Go implementation of bloom filters,
+based on murmurhash.")
+    (home-page "https://github.com/willf/bloom";)
+    (license license:bsd-2)))



reply via email to

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