From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:52222) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jQvVE-0003Dn-JH for guix-patches@gnu.org; Tue, 21 Apr 2020 12:12:04 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.90_1) (envelope-from ) id 1jQvVE-000423-2I for guix-patches@gnu.org; Tue, 21 Apr 2020 12:12:04 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:39070) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.90_1) (envelope-from ) id 1jQvVD-00041q-Mq for guix-patches@gnu.org; Tue, 21 Apr 2020 12:12:03 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1jQvVD-00060d-FF for guix-patches@gnu.org; Tue, 21 Apr 2020 12:12:03 -0400 Subject: [bug#40677] [PATCH 04/18] gnu: Add libnatpmp. Resent-Message-ID: From: Jan Wielkiewicz Date: Tue, 21 Apr 2020 18:10:18 +0200 Message-Id: <20200421161032.1847-4-tona_kosmicznego_smiecia@interia.pl> In-Reply-To: <20200421161032.1847-1-tona_kosmicznego_smiecia@interia.pl> References: <20200421161032.1847-1-tona_kosmicznego_smiecia@interia.pl> 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: 40677@debbugs.gnu.org Cc: Jan Wielkiewicz --- gnu/packages/networking.scm | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm index f754683bb9..02ba5e9601 100644 --- a/gnu/packages/networking.scm +++ b/gnu/packages/networking.scm @@ -374,6 +374,34 @@ between different versions of ØMQ.") files contain direct mappings of the abstractions provided by the ØMQ C API.") (license license:expat))) +(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=" (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 Network Address Translation - Port Mapping Protocol (NAT-PMP) +written in the C programming language.") + (license license:bsd-3))) + (define-public librdkafka (package (name "librdkafka") -- 2.26.1