guix_mirror_bot pushed a commit to branch master
in repository guix.

commit 923626d4f562f4d01e56e9226ca0cce15de2e201
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Fri Nov 28 14:11:57 2025 +0000

    gnu: Add go-github-com-bmkessler-fastdiv.
    
    * gnu/packages/golang-maths.scm (go-github-com-bmkessler-fastdiv): New 
variable.
    
    Change-Id: Ic54e930d4450f2231f0ab3e52a86fdd45cdfa768
---
 gnu/packages/golang-maths.scm | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)

diff --git a/gnu/packages/golang-maths.scm b/gnu/packages/golang-maths.scm
index c90dfc932b..831af6cc6b 100644
--- a/gnu/packages/golang-maths.scm
+++ b/gnu/packages/golang-maths.scm
@@ -153,6 +153,32 @@ statistical routines, with particular focus on 
high-quality implementations
 and APIs for non-parametric methods.")
     (license license:bsd-3)))
 
+(define-public go-github-com-bmkessler-fastdiv
+  (package
+    (name "go-github-com-bmkessler-fastdiv")
+    (version "0.0.0-20190227075523-41d5178f2044")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+              (url "https://github.com/bmkessler/fastdiv";)
+              (commit (go-version->git-ref version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "12zd3gl2lrx5nd9g41sbw88g0560xc77qxazcfiyg6ak7sasqcs7"))))
+    (build-system go-build-system)
+    (arguments
+     (list
+      #:import-path "github.com/bmkessler/fastdiv"))
+    (home-page "https://github.com/bmkessler/fastdiv";)
+    (synopsis "Runtime divisibility check in Golang")
+    (description
+     "Package fastdiv implements fast division, modulus and divisibility
+checks for divisors known only at runtime based on paper:
+@url{https://arxiv.org/abs/1902.01961, Faster Remainder by Direct Computation:
+Applications to Compilers and Software Libraries}.")
+    (license license:expat)))
+
 (define-public go-github-com-cockroachdb-apd
   (package
     (name "go-github-com-cockroachdb-apd")

Reply via email to