From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:49112) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fK71S-0001JY-19 for guix-patches@gnu.org; Sat, 19 May 2018 14:56:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fK71O-0001xf-VP for guix-patches@gnu.org; Sat, 19 May 2018 14:56:06 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:33403) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1fK71O-0001xQ-Q7 for guix-patches@gnu.org; Sat, 19 May 2018 14:56:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1fK71O-0006rG-Gp for guix-patches@gnu.org; Sat, 19 May 2018 14:56:02 -0400 Subject: [bug#31531] [PATCH 1/3] gnu: Add cppzmq. Resent-Message-ID: From: Theodoros Foradis Date: Sat, 19 May 2018 21:54:35 +0300 Message-Id: <20180519185437.23665-1-theodoros@foradis.org> In-Reply-To: <87bmdbtr7p.fsf@foradis.org> References: <87bmdbtr7p.fsf@foradis.org> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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: 31531@debbugs.gnu.org * gnu/packages/networking.scm (cppzmq): New variable. --- gnu/packages/networking.scm | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm index eda2984d1..24cd31310 100644 --- a/gnu/packages/networking.scm +++ b/gnu/packages/networking.scm @@ -20,6 +20,7 @@ ;;; Copyright © 2017 Thomas Danckaert ;;; Copyright © 2018 Adam Van Ymeren ;;; Copyright © 2018 Fis Trivial +;;; Copyright © 2018 Theodoros Foradis ;;; ;;; This file is part of GNU Guix. ;;; @@ -312,6 +313,33 @@ more.") between different versions of ØMQ.") (license license:mpl2.0))) +(define-public cppzmq + (package + (name "cppzmq") + (version "4.2.2") + (source (origin + (method url-fetch) + (uri (string-append + "https://github.com/zeromq/" name + "/archive/v" version ".tar.gz")) + (sha256 + (base32 + "0zbk3726pvcl088qzl5z3cc0w0k5hh192l5jddnc0xsqmiq01x9y")) + (file-name (string-append name "-" version ".tar.gz")))) + (build-system cmake-build-system) + (arguments + '(#:tests? #f)) ;; No tests. + (native-inputs + `(("pkg-config" ,pkg-config))) + (inputs + `(("zeromq" ,zeromq))) + (home-page "http://zeromq.org") + (synopsis "C++ bindings for ØMQ") + (description + "Header-only C++ bindings for ØMQ. Contains direct mappings of the +abstractions provided by the ØMQ C API.") + (license license:expat))) + (define-public librdkafka (package (name "librdkafka") -- 2.16.2