gnu: terraform-docs: Update to 0.5.0.

* gnu/packages/terraform.scm (terraform-docs): Update to 0.5.0.
[native-inputs]: Remove them all.
This commit is contained in:
Tobias Geerinckx-Rice 2018-11-06 15:05:30 +01:00
parent c3b8300af3
commit b1eeeb8dd4
No known key found for this signature in database
GPG key ID: 0DB0FF884F556D79

View file

@ -1,5 +1,6 @@
;;; GNU Guix --- Functional package management for GNU ;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2018 Christopher Baines <mail@cbaines.net> ;;; Copyright © 2018 Christopher Baines <mail@cbaines.net>
;;; Copyright © 2018 Tobias Geerinckx-Rice <me@tobias.gr>
;;; ;;;
;;; This file is part of GNU Guix. ;;; This file is part of GNU Guix.
;;; ;;;
@ -21,13 +22,12 @@ (define-module (gnu packages terraform)
#:use-module (guix packages) #:use-module (guix packages)
#:use-module (guix download) #:use-module (guix download)
#:use-module (guix git-download) #:use-module (guix git-download)
#:use-module (guix build-system go) #:use-module (guix build-system go))
#:use-module (gnu packages golang))
(define-public terraform-docs (define-public terraform-docs
(package (package
(name "terraform-docs") (name "terraform-docs")
(version "0.3.0") (version "0.5.0")
(source (origin (source (origin
(method git-fetch) (method git-fetch)
(uri (git-reference (uri (git-reference
@ -36,11 +36,8 @@ (define-public terraform-docs
(file-name (git-file-name name version)) (file-name (git-file-name name version))
(sha256 (sha256
(base32 (base32
"0xchpik32ab8m89s6jv671vswg8xhprfvh6s5md0zd36482d2nmm")))) "12w2yr669hk5kxdb9rrzsn8hwvx8rzrc1rmn8hs9l8z1bkfhr4gg"))))
(build-system go-build-system) (build-system go-build-system)
(native-inputs
`(("go-github-com-hashicorp-hcl" ,go-github-com-hashicorp-hcl)
("go-github-com-tj-docopt" ,go-github-com-tj-docopt)))
(arguments (arguments
'(#:import-path "github.com/segmentio/terraform-docs")) '(#:import-path "github.com/segmentio/terraform-docs"))
(synopsis "Generate documentation from Terraform modules") (synopsis "Generate documentation from Terraform modules")