guix_mirror_bot pushed a commit to branch master in repository guix. commit 6f3fb54f72c5c3a92603400d46b7083dc1c95b0e Author: Ashvith Shetty <ashvithshetty0...@zohomail.in> AuthorDate: Tue Apr 15 23:44:08 2025 +0530
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 <l...@gnu.org> --- gnu/packages/golang-xyz.scm | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) 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")