mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: go-github-com-opentracing-opentracing-go: Move to (gnu packages golang-web).
* gnu/packages/golang.scm (go-github-com-opentracing-opentracing-go): Move from here... * gnu/packages/golang-web.scm: ...to here. Change-Id: I87e615589cdb038e2b633ecd63194c81d5864a5b
This commit is contained in:
parent
75641bbd73
commit
7a9f0869d4
2 changed files with 25 additions and 24 deletions
|
@ -5,6 +5,7 @@
|
||||||
;;; Copyright © 2020 Nicolas Goaziou <mail@nicolasgoaziou.fr>
|
;;; Copyright © 2020 Nicolas Goaziou <mail@nicolasgoaziou.fr>
|
||||||
;;; Copyright © 2020 Oleg Pykhalov <go.wigust@gmail.com>
|
;;; Copyright © 2020 Oleg Pykhalov <go.wigust@gmail.com>
|
||||||
;;; Copyright © 2020 Ryan Prior <rprior@protonmail.com>
|
;;; Copyright © 2020 Ryan Prior <rprior@protonmail.com>
|
||||||
|
;;; Copyright © 2021 Raghav Gururajan <rg@raghavgururajan.name>
|
||||||
;;; Copyright © 2021 Sarah Morgensen <iskarian@mgsn.dev>
|
;;; Copyright © 2021 Sarah Morgensen <iskarian@mgsn.dev>
|
||||||
;;; Copyright © 2021, 2022 Efraim Flashner <efraim@flashner.co.il>
|
;;; Copyright © 2021, 2022 Efraim Flashner <efraim@flashner.co.il>
|
||||||
;;; Copyright © 2022 Giacomo Leidi <goodoldpaul@autistici.org>
|
;;; Copyright © 2022 Giacomo Leidi <goodoldpaul@autistici.org>
|
||||||
|
@ -703,6 +704,30 @@ router.")
|
||||||
(description "@code{bluemonday} is a HTML sanitizer implemented in Go.")
|
(description "@code{bluemonday} is a HTML sanitizer implemented in Go.")
|
||||||
(license license:bsd-3)))
|
(license license:bsd-3)))
|
||||||
|
|
||||||
|
(define-public go-github-com-opentracing-opentracing-go
|
||||||
|
(package
|
||||||
|
(name "go-github-com-opentracing-opentracing-go")
|
||||||
|
(version "1.2.0")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri
|
||||||
|
(git-reference
|
||||||
|
(url "https://github.com/opentracing/opentracing-go")
|
||||||
|
(commit (string-append "v" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32 "04rgdwl29kimp2wnm4dycnzp7941hvpj6wym85x23c6fclacm94h"))))
|
||||||
|
(build-system go-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:import-path "github.com/opentracing/opentracing-go"))
|
||||||
|
(native-inputs
|
||||||
|
(list go-github-com-stretchr-testify))
|
||||||
|
(home-page "https://github.com/opentracing/opentracing-go")
|
||||||
|
(synopsis "OpenTracing API for Go")
|
||||||
|
(description "OpenTracing-Go is a Go implementation of the OpenTracing API.")
|
||||||
|
(license license:asl2.0)))
|
||||||
|
|
||||||
(define-public go-github-com-puerkitobio-goquery
|
(define-public go-github-com-puerkitobio-goquery
|
||||||
(package
|
(package
|
||||||
(name "go-github-com-puerkitobio-goquery")
|
(name "go-github-com-puerkitobio-goquery")
|
||||||
|
|
|
@ -1934,30 +1934,6 @@ standardized in RFC 7539.")
|
||||||
(description "InterConv converts interfaces into any data type.")
|
(description "InterConv converts interfaces into any data type.")
|
||||||
(license license:expat))))
|
(license license:expat))))
|
||||||
|
|
||||||
(define-public go-github-com-opentracing-opentracing-go
|
|
||||||
(package
|
|
||||||
(name "go-github-com-opentracing-opentracing-go")
|
|
||||||
(version "1.2.0")
|
|
||||||
(source
|
|
||||||
(origin
|
|
||||||
(method git-fetch)
|
|
||||||
(uri
|
|
||||||
(git-reference
|
|
||||||
(url "https://github.com/opentracing/opentracing-go")
|
|
||||||
(commit (string-append "v" version))))
|
|
||||||
(file-name (git-file-name name version))
|
|
||||||
(sha256
|
|
||||||
(base32 "04rgdwl29kimp2wnm4dycnzp7941hvpj6wym85x23c6fclacm94h"))))
|
|
||||||
(build-system go-build-system)
|
|
||||||
(arguments
|
|
||||||
`(#:import-path "github.com/opentracing/opentracing-go"))
|
|
||||||
(native-inputs
|
|
||||||
(list go-github-com-stretchr-testify))
|
|
||||||
(home-page "https://github.com/opentracing/opentracing-go")
|
|
||||||
(synopsis "OpenTracing API for Go")
|
|
||||||
(description "OpenTracing-Go is a Go implementation of the OpenTracing API.")
|
|
||||||
(license license:asl2.0)))
|
|
||||||
|
|
||||||
(define-public go-github-com-operatorfoundation-monolith-go
|
(define-public go-github-com-operatorfoundation-monolith-go
|
||||||
(package
|
(package
|
||||||
(name "go-github-com-operatorfoundation-monolith-go")
|
(name "go-github-com-operatorfoundation-monolith-go")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue