guix_mirror_bot pushed a commit to branch go-team
in repository guix.

commit 9fb44769e87cf77818e70f7f56b1df3090c0b782
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Mon Feb 9 21:14:39 2026 +0000

    gnu: Add go-github-com-kellydunn-golang-geo.
    
    * gnu/packages/golang-xyz.scm (go-github-com-kellydunn-golang-geo): New 
variable.
    
    Change-Id: I939731af463e900da0a77d94941979cd0643fed7
---
 gnu/packages/golang-xyz.scm | 35 +++++++++++++++++++++++++++++++++++
 1 file changed, 35 insertions(+)

diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index 5f8f2f0bef..ff7a2f45aa 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -13792,6 +13792,41 @@ word-splitting rules.")
       (home-page "https://github.com/kballard/go-shellquote";)
       (license license:expat))))
 
+(define-public go-github-com-kellydunn-golang-geo
+  (package
+    (name "go-github-com-kellydunn-golang-geo")
+    (version "0.7.0")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+              (url "https://github.com/kellydunn/golang-geo";)
+              (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "04h0i78k1abhbv6lm64cc5cmkibw6rnxxa61s79cjls889cd9qwf"))))
+    (build-system go-build-system)
+    (arguments
+     (list
+      ;; Tests require runnint MySQL server: panic: dial tcp [::1]:5432:
+      ;; connect: connection refused.
+      #:tests? #f
+      #:import-path "github.com/kellydunn/golang-geo"))
+    (native-inputs
+     (list go-github-com-erikstmartin-go-testdb))
+    (propagated-inputs
+     (list go-github-com-kylelemons-go-gypsy
+           go-github-com-lib-pq
+           go-github-com-ziutek-mymysql))
+    (home-page "https://github.com/kellydunn/golang-geo";)
+    (synopsis "Geographical calculations in Golang")
+    (description
+     "This library provides convenience functions for translating, geocoding,
+and calculating distances between geographical points.  It is inspired by
+ruby's @code{geokit} and @code{geokit-rails} gems, and aims to make working
+with geographical data a little bit easier in golang.")
+    (license license:expat)))
+
 (define-public go-github-com-kevinburke-ssh-config
   (package
     (name "go-github-com-kevinburke-ssh-config")

Reply via email to