From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:51435) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fIWFY-0003Yc-Pr for guix-patches@gnu.org; Tue, 15 May 2018 05:28:05 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fIWFW-0005vL-MM for guix-patches@gnu.org; Tue, 15 May 2018 05:28:04 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:55340) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1fIWFW-0005vE-IT for guix-patches@gnu.org; Tue, 15 May 2018 05:28:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1fIWFW-0000WO-BW for guix-patches@gnu.org; Tue, 15 May 2018 05:28:02 -0400 Subject: [bug#31449] [PATCH 1/3] gnu: Add guile-simple-zmq. Resent-Message-ID: From: ludo@gnu.org (Ludovic =?UTF-8?Q?Court=C3=A8s?=) References: <87bmdi8kii.fsf@gnu.org> <20180515092204.22179-1-pierre-antoine.rouby@inria.fr> Date: Tue, 15 May 2018 11:27:48 +0200 In-Reply-To: <20180515092204.22179-1-pierre-antoine.rouby@inria.fr> (Rouby Pierre-Antoine's message of "Tue, 15 May 2018 11:22:04 +0200") Message-ID: <87r2mdi7zf.fsf@gnu.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" 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: Rouby Pierre-Antoine Cc: 31449@debbugs.gnu.org --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Rouby Pierre-Antoine skribis: > * gnu/package/guile.scm (guile-simple-zmq): New variable. Applied with the changes below, thanks! Ludo=E2=80=99. --=-=-= Content-Type: text/x-patch Content-Disposition: inline diff --git a/gnu/packages/guile.scm b/gnu/packages/guile.scm index f473a1cc9..9e24e90c2 100644 --- a/gnu/packages/guile.scm +++ b/gnu/packages/guile.scm @@ -69,7 +69,6 @@ #:use-module (gnu packages xdisorg) #:use-module (gnu packages xorg) #:use-module (gnu packages networking) - #:use-module (gnu packages tls) #:use-module (guix packages) #:use-module (guix download) #:use-module (guix git-download) @@ -2133,7 +2132,8 @@ It has a nice, simple s-expression based syntax.") (commit commit))) (sha256 (base32 - "1w73dy5gpyv33jn34dqlkqpwh9w4y8wm6hgvbpb3wbp6xsa2mk4z")))) + "1w73dy5gpyv33jn34dqlkqpwh9w4y8wm6hgvbpb3wbp6xsa2mk4z")) + (file-name (git-file-name name version)))) (build-system trivial-build-system) (arguments `(#:modules ((guix build utils)) --=-=-=--