mirror of
https://https.git.savannah.gnu.org/git/guix.git/
synced 2025-07-16 12:00:35 +02:00
gnu: Add go-github-com-pion-mdns-v2.
Redirect inheritance from go-github-com-pion-mdns v0.0.12 to keep consistency with the flow, older version is required for other packages. * gnu/packages/golang-web.scm (go-github-com-pion-mdns): Downgrade to 0.0.12. [arguments] <#:unpack-path>: Add it. (go-github-com-pion-mdns): New variable. Change-Id: Id580f9736fa92ed9ebb8597c1362eb945cff23e6
This commit is contained in:
parent
58c835a01f
commit
d78e91a469
1 changed files with 25 additions and 2 deletions
|
@ -1650,7 +1650,7 @@ in Golang.")
|
||||||
(define-public go-github-com-pion-mdns
|
(define-public go-github-com-pion-mdns
|
||||||
(package
|
(package
|
||||||
(name "go-github-com-pion-mdns")
|
(name "go-github-com-pion-mdns")
|
||||||
(version "2.0.7")
|
(version "0.0.12")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
|
@ -1659,7 +1659,7 @@ in Golang.")
|
||||||
(commit (string-append "v" version))))
|
(commit (string-append "v" version))))
|
||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "03675hx82lx3c8akkxdbkch1z4dbq54r05jk6jgdyd7mrdh9k4lm"))))
|
(base32 "18nz0vddxik3q11mn4z65zvrfhspxv0xymxv9w3kgk2kszwq2byy"))))
|
||||||
(build-system go-build-system)
|
(build-system go-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
(list
|
(list
|
||||||
|
@ -1668,6 +1668,7 @@ in Golang.")
|
||||||
;; <https://github.com/pion/.goassets/blob/master/.github/workflows/test.reusable.yml>.
|
;; <https://github.com/pion/.goassets/blob/master/.github/workflows/test.reusable.yml>.
|
||||||
#:tests? #f
|
#:tests? #f
|
||||||
#:go go-1.21
|
#:go go-1.21
|
||||||
|
#:unpack-path "github.com/pion/mdns"
|
||||||
#:import-path "github.com/pion/mdns"))
|
#:import-path "github.com/pion/mdns"))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list go-github-com-stretchr-testify))
|
(list go-github-com-stretchr-testify))
|
||||||
|
@ -1682,6 +1683,28 @@ in Golang.")
|
||||||
@url{https://github.com/pion, Pion}.")
|
@url{https://github.com/pion, Pion}.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define-public go-github-com-pion-mdns-v2
|
||||||
|
(package
|
||||||
|
(inherit go-github-com-pion-mdns)
|
||||||
|
(name "go-github-com-pion-mdns-v2")
|
||||||
|
(version "2.0.7")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/pion/mdns/")
|
||||||
|
(commit (string-append "v" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32 "03675hx82lx3c8akkxdbkch1z4dbq54r05jk6jgdyd7mrdh9k4lm"))))
|
||||||
|
(arguments
|
||||||
|
(substitute-keyword-arguments (package-arguments
|
||||||
|
go-github-com-pion-mdns)
|
||||||
|
((#:unpack-path flags ''())
|
||||||
|
"github.com/pion/mdns/v2")
|
||||||
|
((#:import-path flags ''())
|
||||||
|
"github.com/pion/mdns/v2")))))
|
||||||
|
|
||||||
(define-public go-github-com-pion-rtp
|
(define-public go-github-com-pion-rtp
|
||||||
(package
|
(package
|
||||||
(name "go-github-com-pion-rtp")
|
(name "go-github-com-pion-rtp")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue