diff options
author | Christopher Baines <mail@cbaines.net> | 2019-04-19 20:50:23 +0100 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2019-04-19 20:50:41 +0100 |
commit | 217e48e9edb7a08c2d3c03fc9b273ef16348714f (patch) | |
tree | b3582284215f6f5d3209ee9e8ad7c2a7e4571eca | |
parent | 1e72a23d498c137f99b21ae05b5e559c07e22bc6 (diff) | |
download | guix-packer.tar guix-packer.tar.gz |
gnu: Add packer.packer
-rw-r--r-- | gnu/packages/golang.scm | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm index 0b44bd3d02..a6d3fa834b 100644 --- a/gnu/packages/golang.scm +++ b/gnu/packages/golang.scm @@ -2987,6 +2987,28 @@ as conversion to and from @command{net.Addr}.") (description "Tar utilities extracted from @command{go-ipfs} codebase.") (license license:expat)))) +(define-public packer + (package + (name "packer") + (version "1.4.0") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/hashicorp/packer") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "0fpzmwh7vq8vc7gvlnpx4ji4yaxwi2h2ksz0z4782469pkcnbg56")))) + (build-system go-build-system) + (arguments + '(#:import-path "github.com/hashicorp/packer")) + (synopsis "") + (description + "") + (home-page "https://www.terraform.io/") + (license license:mpl2.0))) + (define-public go-github-com-cheekybits-is (let ((commit "68e9c0620927fb5427fda3708222d0edee89eae9") (revision "0")) |