From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:53036) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1e4hSY-0007Rd-BN for guix-patches@gnu.org; Wed, 18 Oct 2017 02:04:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1e4hSX-0005Ow-0k for guix-patches@gnu.org; Wed, 18 Oct 2017 02:04:06 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:38479) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1e4hSW-0005Oa-UN for guix-patches@gnu.org; Wed, 18 Oct 2017 02:04:04 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1e4hSW-0002YR-JT for guix-patches@gnu.org; Wed, 18 Oct 2017 02:04:04 -0400 Subject: [bug#28885] [PATCH 6/9] gnu: Add ruby-cztop. Resent-Message-ID: From: Christopher Baines Date: Wed, 18 Oct 2017 07:03:33 +0100 Message-Id: <20171018060336.9641-6-mail@cbaines.net> In-Reply-To: <20171018060336.9641-1-mail@cbaines.net> References: <20171018060336.9641-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: 28885@debbugs.gnu.org * gnu/packages/ruby.scm (ruby-cztop): New variable. --- gnu/packages/ruby.scm | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index 02320e7cf..48e9ee8b4 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -679,6 +679,33 @@ used by higher level bindings like those provided by CZTop.") "https://github.com/paddor/czmq-ffi-gen") (license license:isc))) +(define-public ruby-cztop + (package + (name "ruby-cztop") + (version "0.11.4") + (source + (origin + (method url-fetch) + (uri (rubygems-uri "cztop" version)) + (sha256 + (base32 + "0mhqacvac1djgqzya623819qcj7f0yjqs2gimf40alp7dbwb82a3")))) + (build-system ruby-build-system) + (arguments + '(#:test-target "spec")) + (native-inputs + `(("bundler" ,bundler) + ("ruby-rspec" ,ruby-rspec))) + (propagated-inputs + `(("ruby-czmq-ffi-gen" ,ruby-czmq-ffi-gen))) + (synopsis "CZMQ Ruby bindings") + (description + "CZMQ Ruby bindings, based on the generated low-level FFI bindings of +CZMQ. The focus of of CZTop is on being easy to use and providing first class +support for security mechanisms.") + (home-page "https://github.com/paddor/cztop") + (license license:isc))) + (define-public ruby-saikuro-treemap (package (name "ruby-saikuro-treemap") -- 2.14.2