diff options
author | Ben Woodcroft <donttrustben@gmail.com> | 2016-06-07 22:00:39 +1000 |
---|---|---|
committer | Ben Woodcroft <donttrustben@gmail.com> | 2016-06-21 21:46:45 +1000 |
commit | b08134907d98057d9cf2e1bfbd6afb067af15045 (patch) | |
tree | da4c43341a399b10931951c983f664fa8c1526fe | |
parent | 7b3df1e56ea2346211e3ee5d52e197d3a2e674ca (diff) | |
download | guix-b08134907d98057d9cf2e1bfbd6afb067af15045.tar guix-b08134907d98057d9cf2e1bfbd6afb067af15045.tar.gz |
gnu: Add ruby-hoe-git.
* gnu/packages/ruby.scm (ruby-hoe-git): New variable.
-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 527f76b404..2f4348a8bc 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -3939,6 +3939,29 @@ part of the Prawn PDF generator.") ;; for details." (license (list license:gpl2 license:gpl3 license:ruby)))) +(define-public ruby-hoe-git + (package + (name "ruby-hoe-git") + (version "1.6.0") + (source + (origin + (method url-fetch) + (uri (rubygems-uri "hoe-git" version)) + (sha256 + (base32 + "10jmmbjm0lkglwxbn4rpqghgg1ipjxrswm117n50adhmy8yij650")))) + (build-system ruby-build-system) + (propagated-inputs + `(("ruby-hoe" ,ruby-hoe) + ("git" ,git))) + (synopsis "Hoe plugins for tighter Git integration") + (description + "This package provides a set of Hoe plugins for tighter Git integration. +It provides tasks to automate release tagging and pushing and changelog +generation.") + (home-page "http://github.com/jbarnette/hoe-git") + (license license:expat))) + (define-public ruby-sequel (package (name "ruby-sequel") |