mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 05:18:07 -05:00
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:
parent
c3b8300af3
commit
b1eeeb8dd4
1 changed files with 4 additions and 7 deletions
|
@ -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")
|
||||||
|
|
Loading…
Reference in a new issue