From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:46159) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1ir61H-00041M-CX for guix-patches@gnu.org; Mon, 13 Jan 2020 15:09:04 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ir61G-0004iO-3D for guix-patches@gnu.org; Mon, 13 Jan 2020 15:09:03 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:54158) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1ir61F-0004i7-W4 for guix-patches@gnu.org; Mon, 13 Jan 2020 15:09:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1ir61F-0008Q4-Pe for guix-patches@gnu.org; Mon, 13 Jan 2020 15:09:01 -0500 Subject: [bug#39119] [PATCH 6/9] gnu: Add node-oop. References: <20200113200137.GF858@E5400> In-Reply-To: <20200113200137.GF858@E5400> Resent-Message-ID: From: Efraim Flashner Date: Mon, 13 Jan 2020 22:04:44 +0200 Message-Id: <20200113200447.5490-6-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-oop): New variable. --- gnu/packages/node-xyz.scm | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/gnu/packages/node-xyz.scm b/gnu/packages/node-xyz.scm index 3e115970a5..b423e3267f 100644 --- a/gnu/packages/node-xyz.scm +++ b/gnu/packages/node-xyz.scm @@ -91,6 +91,31 @@ user-land JavaScript.") random number generator.") (license license:bsd-3))) +(define-public node-oop + ;; No releases, last commit was February 2013. + (let ((commit "f9d87cda0958886955c14a0a716e57021ed295dc") + (revision "1")) + (package + (name "node-oop") + (version (git-version "0.0.0" revision commit)) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/felixge/node-oop") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "0mqrcf0xi2jbwffwkk00cljpqfsri1jk8s6kz8jny45apn7zjds1")))) + (build-system node-build-system) + (arguments '(#:tests? #f)) ; Tests run during build phase. + (home-page "https://github.com/felixge/node-oop") + (synopsis "Simple, light-weight oop module for Node") + (description "This library tries to bring basic oop features to JavaScript +while being as light-weight and simple as possible.") + (license license:expat)))) + (define-public node-statsd-parser (package (name "node-statsd-parser") -- 2.24.1