summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArun Isaac <arunisaac@systemreboot.net>2026-02-06 02:11:28 +0000
committerjgart <jgart@dismail.de>2026-02-06 14:25:52 -0600
commit0764be9285d83ea2c657dd2f82b2f6a772876d0f (patch)
tree331ceb117d0db42d6fa48b69f056237adda69f81
parentc3971200b7518c8920f1e30397297780042783dc (diff)
gnu: Add go-github-com-blevesearch-geo-geojson.
* gnu/packages/golang-web.scm (go-github-com-blevesearch-geo-geojson): New variable. Signed-off-by: jgart <jgart@dismail.de>
-rw-r--r--gnu/packages/golang-web.scm30
1 files changed, 30 insertions, 0 deletions
diff --git a/gnu/packages/golang-web.scm b/gnu/packages/golang-web.scm
index 09eb3292976..7aaf1ea0a5c 100644
--- a/gnu/packages/golang-web.scm
+++ b/gnu/packages/golang-web.scm
@@ -47,6 +47,7 @@
47;;; Copyright © 2025 Danny Milosavljevic <dannym@friendly-machines.com> 47;;; Copyright © 2025 Danny Milosavljevic <dannym@friendly-machines.com>
48;;; Copyright © 2025 Patrick Norton <patrick.147.norton@gmail.com> 48;;; Copyright © 2025 Patrick Norton <patrick.147.norton@gmail.com>
49;;; Copyright © 2025 Jared Klingenberger <jkling@noreply.codeberg.org> 49;;; Copyright © 2025 Jared Klingenberger <jkling@noreply.codeberg.org>
50;;; Copyright © 2026 Arun Isaac <arunisaac@systemreboot.net>
50;;; 51;;;
51;;; This file is part of GNU Guix. 52;;; This file is part of GNU Guix.
52;;; 53;;;
@@ -14219,6 +14220,35 @@ programming language.")
14219programming language, which supports draft-04, draft-06 and draft-07.") 14220programming language, which supports draft-04, draft-06 and draft-07.")
14220 (license license:asl2.0))) 14221 (license license:asl2.0)))
14221 14222
14223(define-public go-github-com-blevesearch-geo-geojson
14224 (package
14225 (name "go-github-com-blevesearch-geo-geojson")
14226 (version "0.2.4")
14227 (source
14228 (origin
14229 (method git-fetch)
14230 (uri (git-reference
14231 (url "https://github.com/blevesearch/geo")
14232 (commit (string-append "v" version))))
14233 (file-name (git-file-name name version))
14234 (sha256
14235 (base32 "05vgzxf6g7gmw9wymxxwkq2xxwakr1lrhs2jy6v91k7akgz9alsv"))))
14236 (build-system go-build-system)
14237 (arguments
14238 (list #:import-path "github.com/blevesearch/geo/geojson"
14239 #:unpack-path "github.com/blevesearch/geo"))
14240 (propagated-inputs
14241 (list go-github-com-blevesearch-bleve-index-api
14242 go-github-com-json-iterator-go
14243 go-github-com-google-go-cmp))
14244 (home-page "https://github.com/blevesearch/geo")
14245 (synopsis "Go S2 geometry library")
14246 (description "This is a library for manipulating geometric shapes. Unlike
14247many geometry libraries, S2 is primarily designed to work with spherical
14248geometry, i.e., shapes drawn on a sphere rather than on a planar 2D map. This
14249makes it especially suitable for working with geographic data.")
14250 (license license:asl2.0)))
14251
14222(define-public go-github-com-xo-dburl 14252(define-public go-github-com-xo-dburl
14223 (package 14253 (package
14224 (name "go-github-com-xo-dburl") 14254 (name "go-github-com-xo-dburl")