mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-23 02:36:40 +01:00
gnu: go-github-com-oschwald-geoip2-golang: Move to golang-web.
* gnu/packages/syncthing.scm (go-github-com-oschwald-geoip2-golang): Move from here ... * gnu/packages/golang-web.scm: ... to here. Change-Id: Ie95d3630ec98cd2f60139914959a82dc3313ea05
This commit is contained in:
parent
3a94f439b3
commit
be7386e288
2 changed files with 27 additions and 25 deletions
|
@ -1829,6 +1829,33 @@ (define-public go-github-com-opentracing-opentracing-go
|
||||||
(description "OpenTracing-Go is a Go implementation of the OpenTracing API.")
|
(description "OpenTracing-Go is a Go implementation of the OpenTracing API.")
|
||||||
(license license:asl2.0)))
|
(license license:asl2.0)))
|
||||||
|
|
||||||
|
(define-public go-github-com-oschwald-geoip2-golang
|
||||||
|
(package
|
||||||
|
(name "go-github-com-oschwald-geoip2-golang")
|
||||||
|
(version "1.4.0")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/oschwald/geoip2-golang")
|
||||||
|
(commit (string-append "v" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32 "1jj4rbdpy87rbl79czg5hs5dyn6xlbnk0bnvyzi71dsxan57nixw"))))
|
||||||
|
(build-system go-build-system)
|
||||||
|
(arguments
|
||||||
|
(list
|
||||||
|
#:tests? #f ; Requires some unpackaged software and test data
|
||||||
|
#:import-path "github.com/oschwald/geoip2-golang"))
|
||||||
|
(propagated-inputs
|
||||||
|
(list go-github-com-oschwald-maxminddb-golang))
|
||||||
|
(home-page "https://github.com/oschwald/geoip2-golang")
|
||||||
|
(synopsis "MaxMind GeoIP2 reader")
|
||||||
|
(description
|
||||||
|
"This package provides a library for reading MaxMind GeoLite2 and GeoIP2
|
||||||
|
databases in Go.")
|
||||||
|
(license license:isc)))
|
||||||
|
|
||||||
(define-public go-github-com-oschwald-maxminddb-golang
|
(define-public go-github-com-oschwald-maxminddb-golang
|
||||||
(package
|
(package
|
||||||
(name "go-github-com-oschwald-maxminddb-golang")
|
(name "go-github-com-oschwald-maxminddb-golang")
|
||||||
|
|
|
@ -280,31 +280,6 @@ (define-public go-github-com-d4l3k-messagediff
|
||||||
(home-page "https://github.com/d4l3k/messagediff")
|
(home-page "https://github.com/d4l3k/messagediff")
|
||||||
(license expat)))
|
(license expat)))
|
||||||
|
|
||||||
(define-public go-github-com-oschwald-geoip2-golang
|
|
||||||
(package
|
|
||||||
(name "go-github-com-oschwald-geoip2-golang")
|
|
||||||
(version "1.4.0")
|
|
||||||
(source (origin
|
|
||||||
(method git-fetch)
|
|
||||||
(uri (git-reference
|
|
||||||
(url "https://github.com/oschwald/geoip2-golang")
|
|
||||||
(commit (string-append "v" version))))
|
|
||||||
(file-name (git-file-name name version))
|
|
||||||
(sha256
|
|
||||||
(base32
|
|
||||||
"1jj4rbdpy87rbl79czg5hs5dyn6xlbnk0bnvyzi71dsxan57nixw"))))
|
|
||||||
(build-system go-build-system)
|
|
||||||
(propagated-inputs
|
|
||||||
(list go-github-com-oschwald-maxminddb-golang go-golang-org-x-sys))
|
|
||||||
(arguments
|
|
||||||
`(#:import-path "github.com/oschwald/geoip2-golang"
|
|
||||||
#:tests? #f)) ; Requires some unpackaged software and test data
|
|
||||||
(synopsis "MaxMind GeoIP2 reader")
|
|
||||||
(description "This package provides a library for reading MaxMind
|
|
||||||
GeoLite2 and GeoIP2 databases in Go.")
|
|
||||||
(home-page "https://github.com/oschwald/geoip2-golang")
|
|
||||||
(license isc)))
|
|
||||||
|
|
||||||
(define-public go-github-com-thejerf-suture
|
(define-public go-github-com-thejerf-suture
|
||||||
(package
|
(package
|
||||||
(name "go-github-com-thejerf-suture")
|
(name "go-github-com-thejerf-suture")
|
||||||
|
|
Loading…
Reference in a new issue