summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAshvith Shetty <ashvithshetty0010@zohomail.in>2025-04-15 23:44:08 +0530
committerLudovic Courtès <ludo@gnu.org>2025-05-27 15:10:38 +0200
commit6f3fb54f72c5c3a92603400d46b7083dc1c95b0e (patch)
tree8b69dfe0c24fee90d68481f0202294cbe5eb1664
parentb50d22f3dfa3030a1d29cb181e6dc62082777380 (diff)
gnu: Add go-github-com-mmcloughlin-geohash.
* gnu/packages/golang-xyz.scm (go-github-com-mmcloughlin-geohash): New variable. Change-Id: I8c3ccba1a3a0381d4f43d094605ead23ace4c146 Signed-off-by: Ludovic Courtès <ludo@gnu.org>
-rw-r--r--gnu/packages/golang-xyz.scm23
1 files changed, 23 insertions, 0 deletions
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index cdfaee1d62..9bf279fdc7 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -11844,6 +11844,29 @@ Decoder,tailored for developers who need fine-grained control over XML
parsing.")
(license license:expat)))
+(define-public go-github-com-mmcloughlin-geohash
+ (package
+ (name "go-github-com-mmcloughlin-geohash")
+ (version "0.10.0")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/mmcloughlin/geohash")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "0q97mq70jp5336gmfyv2nj9xm3qgz48lkfy4cyfdsd2rpb7zms50"))))
+ (build-system go-build-system)
+ (arguments
+ (list
+ #:import-path "github.com/mmcloughlin/geohash"))
+ (home-page "https://github.com/mmcloughlin/geohash")
+ (synopsis "Geohash library for Golang")
+ (description
+ "@code{geohash} provides encoding and decoding of string and integer geohashes.")
+ (license license:expat)))
+
(define-public go-github-com-moby-sys-mountinfo
(package
(name "go-github-com-moby-sys-mountinfo")