diff options
author | Christopher Baines <mail@cbaines.net> | 2018-02-05 11:16:39 +0000 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2018-12-31 10:14:46 +0000 |
commit | 58e8c06280f46937ce48c882b5b6a18cbf0b49ee (patch) | |
tree | d8c014aebc06bdff67385257b756019f7c9a39ae | |
parent | 384bf42a323053e522accc0b27816ecb91204445 (diff) | |
download | gnu-guix-58e8c06280f46937ce48c882b5b6a18cbf0b49ee.tar gnu-guix-58e8c06280f46937ce48c882b5b6a18cbf0b49ee.tar.gz |
gnu: Add ruby-terraform.
-rw-r--r-- | gnu/packages/ruby.scm | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index 95a09e437d..6b1994a490 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -8672,3 +8672,26 @@ but it can function as a stand-alone templating engine.") "Command line builders and executors.") (home-page "https://github.com/tobyclemson/lino") (license license:expat))) + +(define-public ruby-terraform + (package + (name "ruby-terraform") + (version "0.12.1") + (source + (origin + (method url-fetch) + (uri (rubygems-uri "ruby-terraform" version)) + (sha256 + (base32 + "198q2nmfbyn0x7vs81x4gmxymz0z5k7y7x9v48vi8szqlhm9fp7r")))) + (build-system ruby-build-system) + (arguments + '(#:tests? #f)) + (propagated-inputs `(("ruby-lino" ,ruby-lino))) + (synopsis + "Wraps the Terraform CLI so that Terraform can be invoked from a Ruby script or Rakefile.") + (description + "Wraps the Terraform CLI so that Terraform can be invoked from a Ruby script or Rakefile.") + (home-page + "https://github.com/tobyclemson/ruby_terraform") + (license license:expat))) |