From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:45856) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1ir60J-0002fe-U8 for guix-patches@gnu.org; Mon, 13 Jan 2020 15:08:05 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ir60I-0003hf-Lh for guix-patches@gnu.org; Mon, 13 Jan 2020 15:08:03 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:54151) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1ir60I-0003hT-ID for guix-patches@gnu.org; Mon, 13 Jan 2020 15:08:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1ir60I-0008OH-DB for guix-patches@gnu.org; Mon, 13 Jan 2020 15:08:02 -0500 Subject: [bug#39119] [PATCH 5/9] gnu: Add node-util-deprecate. References: <20200113200137.GF858@E5400> In-Reply-To: <20200113200137.GF858@E5400> Resent-Message-ID: From: Efraim Flashner Date: Mon, 13 Jan 2020 22:04:43 +0200 Message-Id: <20200113200447.5490-5-efraim@flashner.co.il> MIME-Version: 1.0 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: 39119@debbugs.gnu.org Cc: Efraim Flashner * gnu/packages/node-xyz.scm (node-util-deprecate): New variable. --- gnu/packages/node-xyz.scm | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/gnu/packages/node-xyz.scm b/gnu/packages/node-xyz.scm index 9a874f57b8..3e115970a5 100644 --- a/gnu/packages/node-xyz.scm +++ b/gnu/packages/node-xyz.scm @@ -112,3 +112,25 @@ random number generator.") (description "This package provides a streaming parser for the statsd protocol used in @code{node-lynx}.") (license license:asl2.0))) + +(define-public node-util-deprecate + (package + (name "node-util-deprecate") + (version "1.0.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/TooTallNate/util-deprecate") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1rk94nl3qc7znsk8400bnga30v0m7j2mmvz9ldwjinxv1d3n11xc")))) + (build-system node-build-system) + (arguments '(#:tests? #f)) ; No test suite. + (home-page "https://github.com/TooTallNate/util-deprecate") + (synopsis "Node.js `util.deprecate()` function with browser support") + (description "This package provides the Node.js @code{util.deprecate()} +function with browser support.") + (license license:expat))) -- 2.24.1