From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:50353) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ddJ6U-0007SI-Kh for guix-patches@gnu.org; Thu, 03 Aug 2017 12:36:08 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ddJ6R-00061L-Id for guix-patches@gnu.org; Thu, 03 Aug 2017 12:36:06 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:37580) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1ddJ6R-00061B-FN for guix-patches@gnu.org; Thu, 03 Aug 2017 12:36:03 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1ddJ6R-0003Z0-8p for guix-patches@gnu.org; Thu, 03 Aug 2017 12:36:03 -0400 Subject: [bug#27935] [PATCH 4/8] gnu: Add js-highlight. Resent-Message-ID: From: Ricardo Wurmus Date: Thu, 3 Aug 2017 18:34:34 +0200 Message-Id: <20170803163438.5742-4-rekado@elephly.net> In-Reply-To: <20170803163438.5742-1-rekado@elephly.net> References: <20170803163438.5742-1-rekado@elephly.net> 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: 27935@debbugs.gnu.org Cc: Ricardo Wurmus * gnu/packages/javascript.scm (js-highlight): New variable. --- gnu/packages/javascript.scm | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/gnu/packages/javascript.scm b/gnu/packages/javascript.scm index fdf522474..533e7365a 100644 --- a/gnu/packages/javascript.scm +++ b/gnu/packages/javascript.scm @@ -229,3 +229,26 @@ for JavaScript. It works in (at least) node.js and browsers. It supports localization and timezones. Most standard specifiers from C are supported as well as some other extensions from Ruby.") (license license:expat))) + +(define-public js-highlight + (package + (name "js-highlight") + (version "9.12.0") + (source (origin + (method url-fetch) + (uri (string-append "https://github.com/isagalaev/highlight.js/" + "archive/" version ".tar.gz")) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 + "1jjn9mj7fwq4zpr6is438bscf03b3q8jkj0k5c3fc6pkmjnhw939")))) + (build-system minify-build-system) + (arguments + `(#:javascript-files '("src/highlight.js"))) + (home-page "https://github.com/isagalaev/highlight.js") + (synopsis "Syntax highlighting for JavaScript") + (description "Highlight.js is a syntax highlighter written in JavaScript. +It works in the browser as well as on the server. It works with pretty much +any markup, doesn’t depend on any framework and has automatic language +detection.") + (license license:bsd-3))) -- 2.13.3