mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: go-golang-org-x-tools: Move to golang-build.
* gnu/packages/golang.scm (go-golang-org-x-tools): Move from here ... * gnu/packages/golang-build.scm: ... to here. Change-Id: Ib9a69a5dab73b6f9d935fd0216658f5e4f8cf1f8
This commit is contained in:
parent
faabd385eb
commit
92df6b5c70
2 changed files with 39 additions and 41 deletions
|
@ -373,6 +373,45 @@ processing.")
|
||||||
time.")
|
time.")
|
||||||
(license license:bsd-3))))
|
(license license:bsd-3))))
|
||||||
|
|
||||||
|
(define-public go-golang-org-x-tools
|
||||||
|
(package
|
||||||
|
(name "go-golang-org-x-tools")
|
||||||
|
(version "0.5.0")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://go.googlesource.com/tools")
|
||||||
|
(commit (string-append "v" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32 "08kx2nndq3sr6xai7403mbsqvz5shxmp2icylfr2fmwagr59cb2n"))
|
||||||
|
(modules '((guix build utils)))
|
||||||
|
(snippet
|
||||||
|
'(begin
|
||||||
|
;; gopls versions are tagged separately, and it is a
|
||||||
|
;; separate Guix package.
|
||||||
|
(delete-file-recursively "gopls")))))
|
||||||
|
(build-system go-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:import-path "golang.org/x/tools"
|
||||||
|
;; Source-only package
|
||||||
|
#:tests? #f
|
||||||
|
#:phases
|
||||||
|
(modify-phases %standard-phases
|
||||||
|
;; Source-only package
|
||||||
|
(delete 'build))))
|
||||||
|
(propagated-inputs
|
||||||
|
(list go-github-com-yuin-goldmark
|
||||||
|
go-golang-org-x-mod
|
||||||
|
go-golang-org-x-net
|
||||||
|
go-golang-org-x-sys))
|
||||||
|
(home-page "https://go.googlesource.com/tools/")
|
||||||
|
(synopsis "Tools that support the Go programming language")
|
||||||
|
(description "This package provides miscellaneous tools that support the
|
||||||
|
Go programming language.")
|
||||||
|
(license license:bsd-3)))
|
||||||
|
|
||||||
(define-public go-golang-org-x-xerrors
|
(define-public go-golang-org-x-xerrors
|
||||||
(let ((commit "5ec99f83aff198f5fbd629d6c8d8eb38a04218ca")
|
(let ((commit "5ec99f83aff198f5fbd629d6c8d8eb38a04218ca")
|
||||||
(revision "0"))
|
(revision "0"))
|
||||||
|
|
|
@ -3347,47 +3347,6 @@ expressing configuration which is easy for both humans and machines to read.")
|
||||||
(home-page "https://github.com/hashicorp/hcl")
|
(home-page "https://github.com/hashicorp/hcl")
|
||||||
(license license:mpl2.0)))
|
(license license:mpl2.0)))
|
||||||
|
|
||||||
(define-public go-golang-org-x-tools
|
|
||||||
(package
|
|
||||||
(name "go-golang-org-x-tools")
|
|
||||||
(version "0.5.0")
|
|
||||||
(source
|
|
||||||
(origin
|
|
||||||
(method git-fetch)
|
|
||||||
(uri (git-reference
|
|
||||||
(url "https://go.googlesource.com/tools")
|
|
||||||
(commit (string-append "v" version))))
|
|
||||||
(file-name (git-file-name name version))
|
|
||||||
(sha256
|
|
||||||
(base32
|
|
||||||
"08kx2nndq3sr6xai7403mbsqvz5shxmp2icylfr2fmwagr59cb2n"))
|
|
||||||
(modules '((guix build utils)))
|
|
||||||
(snippet
|
|
||||||
'(begin
|
|
||||||
;; gopls versions are tagged separately, and it is a
|
|
||||||
;; separate Guix package.
|
|
||||||
(delete-file-recursively "gopls")))))
|
|
||||||
(build-system go-build-system)
|
|
||||||
(arguments
|
|
||||||
`(#:import-path "golang.org/x/tools"
|
|
||||||
;; Source-only package
|
|
||||||
#:tests? #f
|
|
||||||
#:phases
|
|
||||||
(modify-phases %standard-phases
|
|
||||||
;; Source-only package
|
|
||||||
(delete 'build))))
|
|
||||||
(propagated-inputs
|
|
||||||
(list
|
|
||||||
go-github-com-yuin-goldmark
|
|
||||||
go-golang-org-x-mod
|
|
||||||
go-golang-org-x-net
|
|
||||||
go-golang-org-x-sys))
|
|
||||||
(synopsis "Tools that support the Go programming language")
|
|
||||||
(description "This package provides miscellaneous tools that support the
|
|
||||||
Go programming language.")
|
|
||||||
(home-page "https://go.googlesource.com/tools/")
|
|
||||||
(license license:bsd-3)))
|
|
||||||
|
|
||||||
(define-public go-golang-org-x-crypto
|
(define-public go-golang-org-x-crypto
|
||||||
(package
|
(package
|
||||||
(name "go-golang-org-x-crypto")
|
(name "go-golang-org-x-crypto")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue