1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-07 13:40:36 +02:00

gnu: Add go-github-com-tidwall-cities.

* gnu/packages/golang-xyz.scm (go-github-com-tidwall-cities): New variable.

Change-Id: I05b8dc7af104c6c16acaf942a9229ae740e1df65
This commit is contained in:
Sharlatan Hellseher
2025-02-15 18:25:35 +00:00
parent 27ee55714b
commit eaeae4e077

View File

@@ -14996,6 +14996,29 @@ environment")
(sha256
(base32 "15qi7v2a1kbf70yi3w6y26wbwj0sm8hv9f6xjrb4rl6nv9l8j88c"))))))
(define-public go-github-com-tidwall-cities
(package
(name "go-github-com-tidwall-cities")
(version "0.1.0")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/tidwall/cities")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "1h7imqfhn3w9cfv3zaa7k55s53sas9n628amvjh6kzzjii1a0ix3"))))
(build-system go-build-system)
(arguments
(list
#:import-path "github.com/tidwall/cities"))
(home-page "https://github.com/tidwall/cities")
(synopsis "10,000 Cities with Latitude, Longitude, and Elevation")
(description
"This package provides geographical locations of countries and cities.")
(license license:unlicense)))
(define-public go-github-com-tidwall-gjson
(package
(name "go-github-com-tidwall-gjson")