Sorry, the second mail got sent off too early. Patch for the Ruby-nokogiri gem, an infamous hard to install piece of software. Not so hard to add to GNU Guix, though I had to run 'rake gem' 2x to create the gem (the first time it merely installs the build directory). The tests are skipped because they currently expect the gem to be already installed (not only built!).
I documented the process of making the patch here: https://github.com/pjotrp/guix-notes/blob/master/RUBYGEMS-Nokogiri.org David Thompson gave me advice on how to introduce the new 'gem-flags' key. Though the blame is mine if I got it wrong :) It is a work in progress - I'll send a sanity patch upstream for Nokogiri and get testing working. But I thought I'd share this with you first for comments. Inclusion can be useful to others as the package does work. It is a critical package for many Ruby gems. Pj.
>From e2fd935a659cacde5cb74bef19406f056a262f79 Mon Sep 17 00:00:00 2001 From: pjotrp <pjotr.publi...@thebird.nl> Date: Mon, 13 Jul 2015 14:56:40 +0200 Subject: [PATCH] gnu: Add ruby-nokogiri * gnu/packages/ruby.scm (gnu-nokogiri): New variable --- gnu/packages/ruby.scm | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index bb7d865..85cb0d4 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -34,6 +34,7 @@ #:use-module (guix git-download) #:use-module (guix utils) #:use-module (guix build-system gnu) + #:use-module (gnu packages xml) #:use-module (guix build-system ruby)) (define-public ruby @@ -519,6 +520,45 @@ using Net::HTTP, supporting reconnection and retry according to RFC 2616.") (home-page "https://github.com/drbrain/net-http-persistent") (license license:expat))) +(define-public ruby-nokogiri + (package + (name "ruby-nokogiri") + (version "1.6.6.2") + (source (origin + (method url-fetch) + (uri (string-append + "https://github.com/sparklemotion/nokogiri/archive/v" + version ".tar.gz")) + (file-name (string-append name "-" version ".tar.gz")) + (patches (map search-patch + (list "ruby-nokogiri-Rakefile.patch"))) + (sha256 + (base32 + "1dpmmxr8azbyvhhmw9hpyk3dds577vsd6c312gh2s7kgjd98nd9j")))) + (build-system ruby-build-system) + (arguments + '( + #:tests? #f ;; test fails because nokogiri can only test with a built extension (now part of install phase) + #:gem-flags (list "--use-system-libraries" (string-append "--with-xml2-include=" (assoc-ref %build-inputs "libxml2") "/include/libxml2" )) + #:phases (alist-replace + 'build + (lambda _ + ;; calling rake gem 2x begets a gem + (system* "rake" "gem") + (zero? (system* "rake" "gem"))) + %standard-phases))) + (native-inputs + `(("ruby-hoe" ,ruby-hoe) + ("ruby-rake-compiler", ruby-rake-compiler))) + (inputs + `(("zlib" ,zlib) + ("libxml2" ,libxml2) + ("libxslt" ,libxslt))) + (synopsis "Nokogiri (鋸) is an HTML, XML, SAX, and Reader parser") + (description "Nokogiri parses and searches XML/HTML very quickly, and also has correctly implemented CSS3 selector support as well as XPath 1.0 support.") + (home-page "http://www.nokogiri.org/") + (license license:x11))) + (define-public ruby-minitest (package (name "ruby-minitest") -- 1.7.10.4