From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:45103) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dFOMp-0001tC-Fs for guix-patches@gnu.org; Mon, 29 May 2017 13:22:08 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dFOMk-0006LM-Qj for guix-patches@gnu.org; Mon, 29 May 2017 13:22:07 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:40939) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1dFOMk-0006LG-NG for guix-patches@gnu.org; Mon, 29 May 2017 13:22:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1dFOMk-0000fh-Hp for guix-patches@gnu.org; Mon, 29 May 2017 13:22:02 -0400 Subject: bug#27132: [PATCH 2/6] gnu: Add sbcl-parse-js. Resent-Message-ID: From: Ricardo Wurmus Date: Mon, 29 May 2017 19:21:27 +0200 Message-Id: <20170529172131.20954-2-rekado@elephly.net> In-Reply-To: <20170529172131.20954-1-rekado@elephly.net> References: <20170529172131.20954-1-rekado@elephly.net> 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: 27132@debbugs.gnu.org Cc: Ricardo Wurmus * gnu/packages/lisp.scm (sbcl-parse-js): New variable. --- gnu/packages/lisp.scm | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/gnu/packages/lisp.scm b/gnu/packages/lisp.scm index 6887b320f..473c31f39 100644 --- a/gnu/packages/lisp.scm +++ b/gnu/packages/lisp.scm @@ -1226,3 +1226,26 @@ multiple inspectors with independent history.") (delete 'create-asd-file) (delete 'cleanup) (delete 'create-symlinks))))))) + +(define-public sbcl-parse-js + (let ((commit "fbadc6029bec7039602abfc06c73bb52970998f6") + (revision "1")) + (package + (name "sbcl-parse-js") + (version (string-append "0.0.0-" revision "." (string-take commit 9))) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "http://marijn.haverbeke.nl/git/parse-js") + (commit commit))) + (file-name (string-append name "-" commit "-checkout")) + (sha256 + (base32 + "1wddrnr5kiya5s3gp4cdq6crbfy9fqcz7fr44p81502sj3bvdv39")))) + (build-system asdf-build-system/sbcl) + (home-page "http://marijnhaverbeke.nl/parse-js/") + (synopsis "Parse JavaScript") + (description "Parse-js is a Common Lisp package for parsing +JavaScript (ECMAScript 3). It has basic support for ECMAScript 5.") + (license license:zlib)))) -- 2.12.2