From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:55606) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1esEK7-0007Vi-45 for guix-patches@gnu.org; Sat, 03 Mar 2018 16:04:08 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1esEK2-0003BI-Tv for guix-patches@gnu.org; Sat, 03 Mar 2018 16:04:07 -0500 Received: from debbugs.gnu.org ([208.118.235.43]:35192) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1esEK2-0003BB-Ql for guix-patches@gnu.org; Sat, 03 Mar 2018 16:04:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1esEK2-0003Kz-I5 for guix-patches@gnu.org; Sat, 03 Mar 2018 16:04:02 -0500 Subject: [bug#30689] [PATCH 06/10] gnu: Add ruby-creole. Resent-Message-ID: From: Christopher Baines Date: Sat, 3 Mar 2018 21:03:04 +0000 Message-Id: <20180303210308.15500-6-mail@cbaines.net> In-Reply-To: <20180303210308.15500-1-mail@cbaines.net> References: <20180303210308.15500-1-mail@cbaines.net> List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 30689@debbugs.gnu.org From: Ben Woodcroft * gnu/packages/ruby.scm (ruby-creole): New variable. --- gnu/packages/ruby.scm | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index c39dc033b..46676ff23 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -3407,6 +3407,27 @@ contexts without performance penalties.") (home-page "https://github.com/citrusbyte/contest") (license license:expat))) +(define-public ruby-creole + (package + (name "ruby-creole") + (version "0.5.0") + (source + (origin + (method url-fetch) + (uri (rubygems-uri "creole" version)) + (sha256 + (base32 + "00rcscz16idp6dx0dk5yi5i0fz593i3r6anbn5bg2q07v3i025wm")))) + (build-system ruby-build-system) + (native-inputs + `(("ruby-bacon" ,ruby-bacon))) + (synopsis "Creole markup language converter") + (description + "Creole is a lightweight markup language and this library for converting +creole to @code{HTML}.") + (home-page "https://github.com/minad/creole") + (license license:ruby))) + (define-public ruby-docile (package (name "ruby-docile") -- 2.16.0