mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: go-github-com-hashicorp-hcl-v2: Move to golang-xyz.
* gnu/packages/golang.scm (go-github-com-hashicorp-hcl-v2): Move from here ... * gnu/packages/golang-xyz.scm: ... to here. Change-Id: Ife07c1ca7b0ba7241955767ebd2430a8e60aec90
This commit is contained in:
parent
cd49133bfe
commit
b4107ca3ad
2 changed files with 32 additions and 31 deletions
|
@ -821,6 +821,38 @@ (define-public go-github-com-hashicorp-hcl
|
||||||
(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-github-com-hashicorp-hcl-v2
|
||||||
|
(package
|
||||||
|
(name "go-github-com-hashicorp-hcl-v2")
|
||||||
|
(version "2.11.1")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/hashicorp/hcl")
|
||||||
|
(commit (string-append "v" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32 "0f9flmmkj7fr1337fc56cqy73faq87ix375hnz3id4wc023przv1"))))
|
||||||
|
(build-system go-build-system)
|
||||||
|
(arguments
|
||||||
|
(list
|
||||||
|
#:import-path "github.com/hashicorp/hcl/v2"))
|
||||||
|
(native-inputs
|
||||||
|
(list go-github-com-davecgh-go-spew))
|
||||||
|
(inputs
|
||||||
|
(list go-github-com-agext-levenshtein
|
||||||
|
go-github-com-apparentlymart-go-textseg-v13
|
||||||
|
go-github-com-mitchellh-go-wordwrap
|
||||||
|
go-github-com-zclconf-go-cty))
|
||||||
|
(synopsis "Go implementation of HashiCorp Configuration Language V2")
|
||||||
|
(description
|
||||||
|
"This package contains the main implementation of the @acronym{HCL,
|
||||||
|
HashiCorp Configuration Language}. HCL is designed to be a language for
|
||||||
|
expressing configuration which is easy for both humans and machines to read.")
|
||||||
|
(home-page "https://github.com/hashicorp/hcl")
|
||||||
|
(license license:mpl2.0)))
|
||||||
|
|
||||||
(define-public go-github-com-hashicorp-go-multierror
|
(define-public go-github-com-hashicorp-go-multierror
|
||||||
(package
|
(package
|
||||||
(name "go-github-com-hashicorp-go-multierror")
|
(name "go-github-com-hashicorp-go-multierror")
|
||||||
|
|
|
@ -3304,37 +3304,6 @@ (define-public go-github-com-tj-docopt
|
||||||
(home-page "https://github.com/tj/docopt")
|
(home-page "https://github.com/tj/docopt")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public go-github-com-hashicorp-hcl-v2
|
|
||||||
(package
|
|
||||||
(name "go-github-com-hashicorp-hcl-v2")
|
|
||||||
(version "2.11.1")
|
|
||||||
(source
|
|
||||||
(origin
|
|
||||||
(method git-fetch)
|
|
||||||
(uri (git-reference
|
|
||||||
(url "https://github.com/hashicorp/hcl")
|
|
||||||
(commit (string-append "v" version))))
|
|
||||||
(file-name (git-file-name name version))
|
|
||||||
(sha256
|
|
||||||
(base32
|
|
||||||
"0f9flmmkj7fr1337fc56cqy73faq87ix375hnz3id4wc023przv1"))))
|
|
||||||
(build-system go-build-system)
|
|
||||||
(arguments
|
|
||||||
'(#:import-path "github.com/hashicorp/hcl/v2"))
|
|
||||||
(native-inputs
|
|
||||||
(list go-github-com-davecgh-go-spew))
|
|
||||||
(inputs
|
|
||||||
(list go-github-com-agext-levenshtein go-github-com-mitchellh-go-wordwrap
|
|
||||||
go-github-com-zclconf-go-cty
|
|
||||||
go-github-com-apparentlymart-go-textseg-v13))
|
|
||||||
(synopsis "Go implementation of HashiCorp Configuration Language V2")
|
|
||||||
(description
|
|
||||||
"This package contains the main implementation of the @acronym{HCL,
|
|
||||||
HashiCorp Configuration Language}. HCL is designed to be a language for
|
|
||||||
expressing configuration which is easy for both humans and machines to read.")
|
|
||||||
(home-page "https://github.com/hashicorp/hcl")
|
|
||||||
(license license:mpl2.0)))
|
|
||||||
|
|
||||||
(define-public govulncheck
|
(define-public govulncheck
|
||||||
(package
|
(package
|
||||||
(name "govulncheck")
|
(name "govulncheck")
|
||||||
|
|
Loading…
Reference in a new issue