diff options
Diffstat (limited to 'gnu/packages/golang-xyz.scm')
-rw-r--r-- | gnu/packages/golang-xyz.scm | 23 |
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") |