From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:51238) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1ioQ88-0006nR-Kv for guix-patches@gnu.org; Mon, 06 Jan 2020 06:01:05 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ioQ87-00026h-FL for guix-patches@gnu.org; Mon, 06 Jan 2020 06:01:04 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:39129) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1ioQ87-00026c-CS for guix-patches@gnu.org; Mon, 06 Jan 2020 06:01:03 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1ioQ86-0006pj-BM for guix-patches@gnu.org; Mon, 06 Jan 2020 06:01:02 -0500 Subject: [bug#38969] [PATCH 03/22] gnu: Add libnatpmp Resent-Message-ID: Received: from eggs.gnu.org ([2001:470:142:3::10]:50967) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1ioQ7N-0006Mu-CG for guix-patches@gnu.org; Mon, 06 Jan 2020 06:00:18 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ioQ7L-0001eW-Jy for guix-patches@gnu.org; Mon, 06 Jan 2020 06:00:17 -0500 Received: from smtpo.poczta.interia.pl ([217.74.65.239]:43646) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1ioQ7L-0001af-1Y for guix-patches@gnu.org; Mon, 06 Jan 2020 06:00:15 -0500 From: Jan Wielkiewicz Date: Mon, 6 Jan 2020 02:11:33 +0100 Message-Id: <20200106011151.1902-3-tona_kosmicznego_smiecia@interia.pl> In-Reply-To: <20200106011151.1902-1-tona_kosmicznego_smiecia@interia.pl> References: <20200106011151.1902-1-tona_kosmicznego_smiecia@interia.pl> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable 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: 38969@debbugs.gnu.org Cc: Jan Wielkiewicz --- gnu/packages/networking.scm | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm index 482305de35..76a36111f1 100644 --- a/gnu/packages/networking.scm +++ b/gnu/packages/networking.scm @@ -367,6 +367,32 @@ between different versions of =C3=98MQ.") files contain direct mappings of the abstractions provided by the =C3=98= MQ C API.") (license license:expat)))) =20 +(define-public libnatpmp + (package + (name "libnatpmp") + (version "20150609") + (source (origin + (method url-fetch) + (uri (string-append + "http://miniupnp.free.fr/files/" + name "-" version ".tar.gz")) + (sha256 + (base32 + "1c1n8n7mp0amsd6vkz32n8zj3vnsckv308bb7na0dg0r8969rap1"))= )) + (build-system gnu-build-system) + (arguments + `(#:phases + (modify-phases %standard-phases + (delete 'configure) + (delete 'check)) + #:make-flags + (list (string-append "PREFIX=3D" (assoc-ref %outputs "out"))))) + (home-page "http://miniupnp.free.fr/libnatpmp.html") + (synopsis "C Library implementing NAT-PMP") + (description + "libnatpmp is a portable and asynchronous implementaiton of the NAT= Port Mapping Protocol (NAT-PMP) written in C.") + (license license:bsd-3))) + (define-public librdkafka (package (name "librdkafka") --=20 2.24.1