gnu: go-golang-org-x-net: Update to 0.5.0.
* gnu/packages/golang.scm (go-golang-org-x-net): Update to 0.5.0. (go-golang-org-x-net): Switch to gexp. Signed-off-by: Leo Famulari <leo@famulari.name>master
parent
87eb8473c1
commit
871a0fe5a3
|
@ -3118,11 +3118,11 @@ the official package.")
|
||||||
(license license:bsd-3)))
|
(license license:bsd-3)))
|
||||||
|
|
||||||
(define-public go-golang-org-x-net
|
(define-public go-golang-org-x-net
|
||||||
(let ((commit "ba9fcec4b297b415637633c5a6e8fa592e4a16c3")
|
(let ((commit "8e0e7d8d38f2b6d21d742845570dde2902d06a1d")
|
||||||
(revision "4"))
|
(revision "0"))
|
||||||
(package
|
(package
|
||||||
(name "go-golang-org-x-net")
|
(name "go-golang-org-x-net")
|
||||||
(version (git-version "0.0.0" revision commit))
|
(version (git-version "0.5.0" revision commit))
|
||||||
(source (origin
|
(source (origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
(uri (git-reference
|
(uri (git-reference
|
||||||
|
@ -3131,15 +3131,17 @@ the official package.")
|
||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1hbqvy6r0s5h0dpdqw8fynl3cq0acin3iyqki9xvl5r8h33yb9bx"))))
|
"1fidlcn3vcz42v2lc0rpmqh3bz08bcklj6jvnmz2vvgc481ci5hy"))))
|
||||||
(build-system go-build-system)
|
(build-system go-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:import-path "golang.org/x/net"
|
(list
|
||||||
; Source-only package
|
#:import-path "golang.org/x/net"
|
||||||
#:tests? #f
|
;; Source-only package
|
||||||
#:phases
|
#:tests? #f
|
||||||
(modify-phases %standard-phases
|
#:phases
|
||||||
(delete 'build))))
|
#~(modify-phases %standard-phases
|
||||||
|
;; Source-only package
|
||||||
|
(delete 'build))))
|
||||||
(synopsis "Go supplemental networking libraries")
|
(synopsis "Go supplemental networking libraries")
|
||||||
(description "This package provides supplemental Go networking libraries.")
|
(description "This package provides supplemental Go networking libraries.")
|
||||||
(home-page "https://go.googlesource.com/net")
|
(home-page "https://go.googlesource.com/net")
|
||||||
|
|
Reference in New Issue