diff options
author | Ben Woodcroft <donttrustben@gmail.com> | 2017-08-06 16:41:05 +1000 |
---|---|---|
committer | Ben Woodcroft <donttrustben@gmail.com> | 2017-08-08 09:30:40 +1000 |
commit | 5071f17b29ab40c44c329668550b85bc606cee02 (patch) | |
tree | 3f406d94cb33e805a338439cd75185cf53ac1c68 /gnu | |
parent | e7ea30d59a22857e7a2992ef7bd099b8f88127f7 (diff) | |
download | patches-5071f17b29ab40c44c329668550b85bc606cee02.tar patches-5071f17b29ab40c44c329668550b85bc606cee02.tar.gz |
gnu: ruby-tdiff: Update to 0.3.3-1.b662a604.
* gnu/packages/ruby.scm: Update to 0.3.3-1.b662a604
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/ruby.scm | 43 |
1 files changed, 24 insertions, 19 deletions
diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index 78ec9cdf36..4c8a6f2e5c 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -2878,26 +2878,31 @@ including comments and whitespace.") (license license:expat))) (define-public ruby-tdiff - (package - (name "ruby-tdiff") - (version "0.3.3") - (source (origin - (method url-fetch) - (uri (rubygems-uri "tdiff" version)) - (sha256 - (base32 - "0k41jbvn8qq4mgrixnhlk742b971d136i8wpbcv2cczvi22xpc86")))) - (build-system ruby-build-system) - (native-inputs - `(("ruby-rspec-2" ,ruby-rspec-2) - ("ruby-yard" ,ruby-yard) - ("ruby-rubygems-tasks" ,ruby-rubygems-tasks))) - (synopsis "Calculate the differences between two tree-like structures") - (description - "This library provides functions to calculate the differences between two + ;; Use a newer than released snapshot so that rspec-2 is not required. + (let ((commit "b662a6048f08abc45c1a834e5f34dd1c662935e2")) + (package + (name "ruby-tdiff") + (version (string-append "0.3.3-1." (string-take commit 8))) + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/postmodern/tdiff.git") + (commit commit))) + (file-name (string-append name "-" version "-checkout")) + (sha256 + (base32 + "0n3gq8rx49f7ln6zqlshqfg2mgqyy30rsdjlnki5mv307ykc7ad4")))) + (build-system ruby-build-system) + (native-inputs + `(("ruby-rspec" ,ruby-rspec) + ("ruby-yard" ,ruby-yard) + ("ruby-rubygems-tasks" ,ruby-rubygems-tasks))) + (synopsis "Calculate the differences between two tree-like structures") + (description + "This library provides functions to calculate the differences between two tree-like structures. It is similar to Ruby's built-in @code{TSort} module.") - (home-page "https://github.com/postmodern/tdiff") - (license license:expat))) + (home-page "https://github.com/postmodern/tdiff") + (license license:expat)))) (define-public ruby-nokogiri-diff (package |