From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:41384) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dCrgd-0005oz-5l for guix-patches@gnu.org; Mon, 22 May 2017 14:04:08 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dCrgZ-0007hR-5T for guix-patches@gnu.org; Mon, 22 May 2017 14:04:07 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:58740) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1dCrgZ-0007h7-2I for guix-patches@gnu.org; Mon, 22 May 2017 14:04:03 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1dCrgY-0002cT-Ql for guix-patches@gnu.org; Mon, 22 May 2017 14:04:02 -0400 Subject: bug#27021: [PATCH 2/2] gnu: node: Use unbundled dependencies. Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:41227) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dCrg7-0005Zx-EI for guix-patches@gnu.org; Mon, 22 May 2017 14:03:36 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dCrg3-0007Ej-0w for guix-patches@gnu.org; Mon, 22 May 2017 14:03:35 -0400 Received: from mail-wm0-f50.google.com ([74.125.82.50]:34161) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1dCrg2-0007EQ-RP for guix-patches@gnu.org; Mon, 22 May 2017 14:03:30 -0400 Received: by mail-wm0-f50.google.com with SMTP id 123so13603896wmg.1 for ; Mon, 22 May 2017 11:03:30 -0700 (PDT) From: Jelle Licht Date: Mon, 22 May 2017 20:03:21 +0200 Message-Id: <20170522180321.20388-2-jlicht@fsfe.org> In-Reply-To: <20170522180321.20388-1-jlicht@fsfe.org> References: <20170522180321.20388-1-jlicht@fsfe.org> 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: 27021@debbugs.gnu.org * gnu/packages/node.scm (node)[inputs]: Add c-ares and http-parser. [arguments]: Add configure flags for using system libraries. --- gnu/packages/node.scm | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/gnu/packages/node.scm b/gnu/packages/node.scm index 91f1839b6..b3ecfc843 100644 --- a/gnu/packages/node.scm +++ b/gnu/packages/node.scm @@ -26,6 +26,7 @@ #:use-module (guix download) #:use-module (guix build-system gnu) #:use-module (gnu packages) + #:use-module (gnu packages adns) #:use-module (gnu packages base) #:use-module (gnu packages compression) #:use-module (gnu packages gcc) @@ -33,7 +34,8 @@ #:use-module (gnu packages linux) #:use-module (gnu packages perl) #:use-module (gnu packages python) - #:use-module (gnu packages tls)) + #:use-module (gnu packages tls) + #:use-module (gnu packages web)) (define-public node (package @@ -54,6 +56,8 @@ '(#:configure-flags '("--shared-openssl" "--shared-zlib" "--shared-libuv" + "--shared-cares" + "--shared-http-parser" "--without-snapshot") #:phases (modify-phases %standard-phases @@ -123,7 +127,9 @@ ("util-linux" ,util-linux) ("which" ,which))) (inputs - `(("libuv" ,libuv) + `(("c-ares" ,c-ares) + ("http-parser" ,http-parser) + ("libuv" ,libuv) ("openssl" ,openssl) ("zlib" ,zlib))) (synopsis "Evented I/O for V8 JavaScript") -- 2.13.0