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>
This commit is contained in:
Ashvith Shetty 2025-04-15 23:44:08 +05:30 committed by Ludovic Courtès
parent b50d22f3df
commit 6f3fb54f72
No known key found for this signature in database
GPG key ID: 090B11993D9AEBB5

View file

@ -11844,6 +11844,29 @@ Decoder,tailored for developers who need fine-grained control over XML
parsing.") parsing.")
(license license:expat))) (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 (define-public go-github-com-moby-sys-mountinfo
(package (package
(name "go-github-com-moby-sys-mountinfo") (name "go-github-com-moby-sys-mountinfo")