diff options
author | Ben Woodcroft <donttrustben@gmail.com> | 2016-05-22 08:49:41 +1000 |
---|---|---|
committer | Ben Woodcroft <donttrustben@gmail.com> | 2016-05-25 22:34:29 +1000 |
commit | 5e7f1b0b2a7fc1ac10f61057dfbb828979a4aade (patch) | |
tree | b5a4af8140e5cd1affebac844b0e241f9cf442a7 /gnu | |
parent | 25c288cbf12925e0f079a2ebb0247a21e14dc6b8 (diff) | |
download | guix-5e7f1b0b2a7fc1ac10f61057dfbb828979a4aade.tar guix-5e7f1b0b2a7fc1ac10f61057dfbb828979a4aade.tar.gz |
gnu: ruby-nokogiri: Update to 1.6.7.2.
* gnu/packages/ruby.scm (ruby-nokogiri): Update to 1.6.7.2.
[arguments]: Relax 'mini_portile2' dependency.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/ruby.scm | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index 6c2e08f29d..b9e8cae160 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -1882,13 +1882,13 @@ to reproduce user environments.") (define-public ruby-nokogiri (package (name "ruby-nokogiri") - (version "1.6.7.1") + (version "1.6.7.2") (source (origin (method url-fetch) (uri (rubygems-uri "nokogiri" version)) (sha256 (base32 - "12nwv3lad5k2k73aa1d1xy4x577c143ixks6rs70yp78sinbglk2")))) + "11sbmpy60ynak6s3794q32lc99hs448msjy8rkp84ay7mq7zqspv")))) (build-system ruby-build-system) (arguments ;; Tests fail because Nokogiri can only test with an installed extension, @@ -1897,7 +1897,13 @@ to reproduce user environments.") #:gem-flags (list "--" "--use-system-libraries" (string-append "--with-xml2-include=" (assoc-ref %build-inputs "libxml2") - "/include/libxml2" )))) + "/include/libxml2" )) + #:phases + (modify-phases %standard-phases + (add-after 'extract-gemspec 'update-dependency + (lambda _ + (substitute* ".gemspec" (("2.0.0.rc2") "2.0")) + #t))))) (native-inputs `(("ruby-hoe" ,ruby-hoe) ("ruby-rake-compiler" ,ruby-rake-compiler))) |