gnu: js-es5-shim: Update to 4.5.13.
[jackhill/guix/guix.git] / gnu / packages / javascript.scm
CommitLineData
a3d3b7a4
AI
1;;; GNU Guix --- Functional package management for GNU
2;;; Copyright © 2017 Arun Isaac <arunisaac@systemreboot.net>
b37b48f8 3;;; Copyright © 2017 Ricardo Wurmus <rekado@elephly.net>
99863166 4;;; Copyright © 2017, 2018 Tobias Geerinckx-Rice <me@tobias.gr>
cb5b5149 5;;; Copyright © 2017, 2018, 2019 Efraim Flashner <efraim@flashner.co.il>
11b43f99 6;;; Copyright © 2018 Nicolas Goaziou <mail@nicolasgoaziou.fr>
a3d3b7a4
AI
7;;;
8;;; This file is part of GNU Guix.
9;;;
10;;; GNU Guix is free software; you can redistribute it and/or modify it
11;;; under the terms of the GNU General Public License as published by
12;;; the Free Software Foundation; either version 3 of the License, or (at
13;;; your option) any later version.
14;;;
15;;; GNU Guix is distributed in the hope that it will be useful, but
16;;; WITHOUT ANY WARRANTY; without even the implied warranty of
17;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18;;; GNU General Public License for more details.
19;;;
20;;; You should have received a copy of the GNU General Public License
21;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
22
23(define-module (gnu packages javascript)
24 #:use-module ((guix licenses) #:prefix license:)
25 #:use-module (gnu packages)
26 #:use-module (gnu packages base)
27 #:use-module (gnu packages compression)
a3d3b7a4 28 #:use-module (gnu packages lisp)
99863166 29 #:use-module (gnu packages readline)
a3d3b7a4
AI
30 #:use-module (guix packages)
31 #:use-module (guix download)
68ffb6c5 32 #:use-module (guix git-download)
89ba894e 33 #:use-module (guix build-system gnu)
68ffb6c5
RW
34 #:use-module (guix build-system trivial)
35 #:use-module (guix build-system minify))
a3d3b7a4 36
649c438c
LC
37(define-public font-mathjax
38 (package
39 (name "font-mathjax")
d6a7268b 40 (version "2.7.2")
649c438c
LC
41 (source
42 (origin
43 (method url-fetch)
44 (uri (string-append
45 "https://github.com/mathjax/MathJax/archive/"
46 version ".tar.gz"))
47 (file-name (string-append name "-" version ".tar.gz"))
48 (sha256
49 (base32
d6a7268b 50 "1r72di4pg4i6pfhcskkxqmf1158m81ki6a7lbw6nz4zh7xw23hy4"))))
649c438c
LC
51 (build-system trivial-build-system)
52 (arguments
53 `(#:modules ((guix build utils))
54 #:builder
55 (begin
56 (use-modules (guix build utils)
57 (ice-9 match))
58 (set-path-environment-variable
59 "PATH" '("bin") (map (match-lambda
60 ((_ . input)
61 input))
62 %build-inputs))
63 (let ((install-directory (string-append %output "/share/fonts/mathjax")))
64 (mkdir-p install-directory)
e3cfef22
MW
65 (invoke "tar" "-C" install-directory "-xvf"
66 (assoc-ref %build-inputs "source")
67 ,(string-append "MathJax-" version "/fonts")
68 "--strip" "2")))))
649c438c
LC
69 (native-inputs
70 `(("gzip" ,gzip)
71 ("tar" ,tar)))
72 (home-page "https://www.mathjax.org/")
73 (synopsis "Fonts for MathJax")
74 (description "This package contains the fonts required for MathJax.")
75 (license license:asl2.0)))
76
a3d3b7a4
AI
77(define-public js-mathjax
78 (package
79 (inherit font-mathjax)
80 (name "js-mathjax")
81 (arguments
82 `(#:modules ((guix build utils))
83 #:builder
84 (begin
85 (use-modules (guix build utils)
86 (ice-9 match)
87 (ice-9 popen)
88 (ice-9 regex))
89 (set-path-environment-variable
90 "PATH" '("bin") (map (match-lambda
91 ((_ . input)
92 input))
93 %build-inputs))
94 (set-path-environment-variable
95 "GUIX_LOCPATH" '("lib/locale")
96 (list (assoc-ref %build-inputs "glibc-utf8-locales")))
97 (setenv "LANG" "en_US.UTF-8")
98 (let ((install-directory (string-append %output "/share/javascript/mathjax")))
e3cfef22
MW
99 (invoke "tar" "xvf" (assoc-ref %build-inputs "source")
100 ,(string-append "MathJax-" (package-version font-mathjax)
101 "/unpacked")
102 "--strip" "2")
a3d3b7a4
AI
103 (mkdir-p install-directory)
104 (symlink (string-append (assoc-ref %build-inputs "font-mathjax")
105 "/share/fonts/mathjax")
106 (string-append install-directory "/fonts"))
107
108 (for-each
109 (lambda (file)
110 (let ((installed (string-append install-directory
111 ;; remove prefix "."
112 (string-drop file 1))))
113 (format #t "~a -> ~a~%" file installed)
114 (cond
115 ((string-match "\\.js$" file)
116 (mkdir-p (dirname installed))
117 (let ((minified (open-pipe* OPEN_READ "uglify-js" file)))
118 (call-with-output-file installed
119 (lambda (port)
9da2dd90
LC
120 (dump-port minified port)))
121
122 (let ((exit (close-pipe minified)))
123 (unless (zero? exit)
124 (error "dear, uglify-js failed" exit)))))
a3d3b7a4
AI
125 (else
126 (install-file file (dirname installed))))))
e3cfef22
MW
127 (find-files "."))
128
129 #t))))
a3d3b7a4
AI
130 (native-inputs
131 `(("font-mathjax" ,font-mathjax)
132 ("glibc-utf8-locales" ,glibc-utf8-locales)
133 ("uglify-js" ,uglify-js)
134 ,@(package-native-inputs font-mathjax)))
135 (synopsis "JavaScript display engine for LaTeX, MathML, and AsciiMath")
136 (description "MathJax is a JavaScript display engine for LaTeX, MathML,
137and AsciiMath notation that works in all modern browsers. It requires no
138plugins or software to be installed on the browser. So the page author can
139write web documents that include mathematics and be confident that readers will
140be able to view it naturally and easily.")))
b37b48f8
RW
141
142(define-public js-respond
143 (package
144 (name "js-respond")
145 (version "1.4.2")
146 (source (origin
147 (method url-fetch)
148 (uri (string-append "https://github.com/scottjehl/Respond/"
149 "archive/" version ".tar.gz"))
150 (file-name (string-append name "-" version ".tar.gz"))
151 (sha256
152 (base32
153 "0ds1ya2a185jp93mdn07159c2x8zczwi960ykrawpp62bwk2n93d"))))
154 (build-system trivial-build-system)
155 (arguments
156 `(#:modules ((guix build utils))
157 #:builder
158 (begin
159 (use-modules (guix build utils)
160 (ice-9 match)
161 (ice-9 popen)
162 (srfi srfi-26))
163 (set-path-environment-variable
164 "PATH" '("bin") (map (match-lambda
165 ((_ . input)
166 input))
167 %build-inputs))
168 (let ((install-directory (string-append %output
169 "/share/javascript/respond/")))
e3cfef22
MW
170 (invoke "tar" "xvf"
171 (assoc-ref %build-inputs "source")
172 "--strip" "1")
b37b48f8
RW
173 (mkdir-p install-directory)
174 (let* ((file "src/respond.js")
175 (installed (string-append install-directory "respond.min.js")))
176 (let ((minified (open-pipe* OPEN_READ "uglify-js" file)))
177 (call-with-output-file installed
178 (cut dump-port minified <>)))))
179 #t)))
180 (home-page "https://github.com/scottjehl/Respond")
181 (native-inputs
182 `(("uglify-js" ,uglify-js)
183 ("source" ,source)
184 ("gzip" ,gzip)
185 ("tar" ,tar)))
186 (synopsis "Polyfill for min/max-width CSS3 Media Queries")
187 (description "The goal of this script is to provide a fast and lightweight
188script to enable responsive web designs in browsers that don't support CSS3
189Media Queries.")
190 (license license:expat)))
ed69963b
RW
191
192(define-public js-html5shiv
193 (package
194 (name "js-html5shiv")
195 (version "3.7.3")
196 (source (origin
8a35e58a
EF
197 (method git-fetch)
198 (uri (git-reference
199 (url "https://github.com/aFarkas/html5shiv")
200 (commit version)))
201 (file-name (git-file-name name version))
ed69963b
RW
202 (sha256
203 (base32
8a35e58a 204 "0y1c5nyq0brl9fjdihhax33vks4s1ij9iv113879sg3zflmgqpd0"))))
ed69963b
RW
205 (build-system minify-build-system)
206 (home-page "https://github.com/aFarkas/html5shiv")
207 (synopsis "Enable HTML5 sectioning elements in legacy browsers")
208 (description "The HTML5 Shiv enables use of HTML5 sectioning elements in
209legacy Internet Explorer and provides basic HTML5 styling for Internet
210Explorer 6-9, Safari 4.x (and iPhone 3.x), and Firefox 3.x.")
211 ;; From the file "MIT and GPL2 licenses.md":
212 ;;
213 ;; This software is licensed under a dual license system (MIT or GPL
214 ;; version 2). This means you are free to choose with which of both
215 ;; licenses (MIT or GPL version 2) you want to use this library.
216 (license (list license:expat license:gpl2))))
68ffb6c5
RW
217
218(define-public js-json2
219 (let ((commit "031b1d9e6971bd4c433ca85e216cc853f5a867bd")
220 (revision "1"))
221 (package
222 (name "js-json2")
223 (version (string-append "2016-10-28." revision "-" (string-take commit 7)))
224 (source (origin
225 (method git-fetch)
226 (uri (git-reference
227 (url "https://github.com/douglascrockford/JSON-js.git")
228 (commit commit)))
229 (file-name (string-append name "-" version "-checkout"))
230 (sha256
231 (base32
232 "1fvb6b2y5sd3sqdgcj683sdxcbxdii34q0ysc9wg0dq1sy81l11v"))))
233 (build-system minify-build-system)
234 (arguments
235 `(#:javascript-files '("json2.js"
236 "json_parse.js"
237 "json_parse_state.js"
238 "cycle.js")))
239 (home-page "https://github.com/douglascrockford/JSON-js")
240 (synopsis "JSON encoders and decoders")
241 (description "The files in this collection implement JSON
242encoders/decoders in JavaScript.
243
244@code{json2.js}: This file creates a JSON property in the global object, if
245there isn't already one, setting its value to an object containing a stringify
246method and a parse method. The @code{parse} method uses the @code{eval}
247method to do the parsing, guarding it with several regular expressions to
248defend against accidental code execution hazards. On current browsers, this
249file does nothing, preferring the built-in JSON object.
250
251@code{json_parse.js}: This file contains an alternative JSON @code{parse}
252function that uses recursive descent instead of @code{eval}.
253
254@code{json_parse_state.js}: This files contains an alternative JSON
255@code{parse} function that uses a state machine instead of @code{eval}.
256
257@code{cycle.js}: This file contains two functions, @code{JSON.decycle} and
258@code{JSON.retrocycle}, which make it possible to encode cyclical structures
259and DAGs in JSON, and to then recover them. This is a capability that is not
260provided by ES5. @code{JSONPath} is used to represent the links.")
261 (license license:public-domain))))
3f48403a
RW
262
263(define-public js-strftime
264 (package
265 (name "js-strftime")
266 (version "0.10.0")
267 (source (origin
16df2914
EF
268 (method git-fetch)
269 (uri (git-reference
270 (url"https://github.com/samsonjs/strftime")
271 (commit (string-append "v" version))))
272 (file-name (git-file-name name version))
3f48403a
RW
273 (sha256
274 (base32
16df2914 275 "131nmlivazwxyba25kh9lda99749fq4xsyin6lzfalaaydviby4p"))))
3f48403a
RW
276 (build-system minify-build-system)
277 (arguments
278 `(#:javascript-files '("strftime.js")))
279 (home-page "https://github.com/samsonjs/strftime")
280 (synopsis "Implementation of strftime to JavaScript")
281 (description "This is an implementation of the @code{strftime} procedure
282for JavaScript. It works in (at least) node.js and browsers. It supports
283localization and timezones. Most standard specifiers from C are supported as
284well as some other extensions from Ruby.")
285 (license license:expat)))
a6bbb2a0
RW
286
287(define-public js-highlight
288 (package
289 (name "js-highlight")
290 (version "9.12.0")
291 (source (origin
778f4430
EF
292 (method git-fetch)
293 (uri (git-reference
294 (url "https://github.com/isagalaev/highlight.js")
295 (commit version)))
296 (file-name (git-file-name name version))
a6bbb2a0
RW
297 (sha256
298 (base32
778f4430 299 "12qz22qjpd6svj58pwgcwg2x2rzhihfdrxg6lgj39nfpaln6dris"))))
a6bbb2a0
RW
300 (build-system minify-build-system)
301 (arguments
302 `(#:javascript-files '("src/highlight.js")))
303 (home-page "https://github.com/isagalaev/highlight.js")
304 (synopsis "Syntax highlighting for JavaScript")
305 (description "Highlight.js is a syntax highlighter written in JavaScript.
306It works in the browser as well as on the server. It works with pretty much
307any markup, doesn’t depend on any framework and has automatic language
308detection.")
309 (license license:bsd-3)))
c4abc94d
RW
310
311(define-public js-datatables
312 (package
313 (name "js-datatables")
314 (version "1.10.15")
315 (source (origin
316 (method url-fetch)
317 (uri (string-append "https://datatables.net/releases/DataTables-"
318 version ".zip"))
319 (sha256
320 (base32
321 "1y9xqyqyz7x1ls3ska71pshl2hpiy3qnw1f7wygyslbhy4ssgf57"))))
322 (build-system minify-build-system)
323 (arguments
324 `(#:javascript-files '("media/js/dataTables.bootstrap.js"
325 "media/js/jquery.dataTables.js")))
326 (native-inputs
327 `(("unzip" ,unzip)))
328 (home-page "https://datatables.net")
329 (synopsis "DataTables plug-in for jQuery")
330 (description "DataTables is a table enhancing plug-in for the jQuery
331Javascript library, adding sorting, paging and filtering abilities to plain
332HTML tables with minimal effort.")
333 (license license:expat)))
4f65067b
RW
334
335(define-public js-selectize
336 (package
337 (name "js-selectize")
3500cb58 338 (version "0.12.6")
4f65067b 339 (source (origin
41514478
EF
340 (method git-fetch)
341 (uri (git-reference
342 (url "https://github.com/selectize/selectize.js")
343 (commit (string-append "v" version))))
344 (file-name (git-file-name name version))
4f65067b
RW
345 (sha256
346 (base32
3500cb58 347 "15gichl8wi6yxag2ps723nxrgyan15976dzsnvw9h9py8sbyyzjn"))))
4f65067b
RW
348 (build-system minify-build-system)
349 (arguments `(#:javascript-files '("src/selectize.js")))
350 (home-page "http://selectize.github.io/selectize.js/")
351 (synopsis "Hybrid widget between a textbox and <select> box")
352 (description "Selectize is the hybrid of a textbox and @code{<select>}
353box. It's jQuery based and it has autocomplete and native-feeling keyboard
354navigation; it is useful for tagging, contact lists, etc.")
355 (license license:asl2.0)))
0b0aa76f
RW
356
357(define-public js-es5-shim
358 (package
359 (name "js-es5-shim")
9cf60dec 360 (version "4.5.13")
0b0aa76f 361 (source (origin
2209a447
EF
362 (method git-fetch)
363 (uri (git-reference
364 (url "https://github.com/es-shims/es5-shim")
365 (commit (string-append "v" version))))
366 (file-name (git-file-name name version))
0b0aa76f
RW
367 (sha256
368 (base32
9cf60dec 369 "142w384fbyllq4yggv173g82lw3wix4jqcg6hkhx1ymq89vvnpmh"))))
0b0aa76f
RW
370 (build-system minify-build-system)
371 (arguments `(#:javascript-files
372 '("es5-sham.js"
373 "es5-shim.js")))
374 (home-page "https://github.com/es-shims/es5-shim")
375 (synopsis "ECMAScript 5 compatibility shims for legacy JavaScript engines")
376 (description "@code{es5-shim.js} patches a JavaScript context to contain
377all ECMAScript 5 methods that can be faithfully emulated with a legacy
378JavaScript engine. @code{es5-sham.js} patches other ES5 methods as closely as
379possible. Many of these shams are intended only to allow code to be written
380to ES5 without causing run-time errors in older engines. In many cases, this
381means that these shams cause many ES5 methods to silently fail.")
382 (license license:expat)))
89ba894e 383
11b43f99
NG
384(define-public js-filesaver
385 (package
386 (name "js-filesaver")
387 (version "1.3.8")
388 (source (origin
389 (method url-fetch)
390 (uri (string-append "https://github.com/eligrey/FileSaver.js/"
391 "archive/" version ".tar.gz"))
392 (file-name (string-append name "-" version))
393 (sha256
394 (base32
395 "1rkhfqs5plaj628kzj7qgm5qahy4v7ihygifidqr6g6265mil97h"))))
396 (build-system minify-build-system)
397 (arguments
398 `(#:phases
399 (modify-phases %standard-phases
400 (add-after 'unpack 'fix-uglification
401 ;; Remove "export" keyword which prevents the file from being
402 ;; uglified by uglify-js. Moreover, that keyword is not present in
403 ;; the minified version of the library some projects are using,
404 ;; e.g.,
405 ;; <https://github.com/jmoenig/Snap--Build-Your-Own-Blocks/blob/master/FileSaver.min.js>
406 (lambda _
407 (substitute* "src/FileSaver.js"
408 (("export ") ""))
409 #t)))))
410 (home-page
411 "https://eligrey.com/blog/saving-generated-files-on-the-client-side/")
412 (synopsis "HTML5 saveAs() FileSaver implementation")
413 (description "@file{FileSaver.js} implements the @code{saveAs()}
414FileSaver interface in browsers that do not natively support it.
415
416@file{FileSaver.js} is the solution to saving files on the
417client-side, and is perfect for webapps that need to generate files,
418or for saving sensitive information that shouldn't be sent to an
419external server.")
420 (license license:expat)))
421
89ba894e
EF
422(define-public mujs
423 (package
424 (name "mujs")
cb5b5149 425 (version "1.0.6")
89ba894e 426 (source (origin
cb5b5149
EF
427 (method url-fetch)
428 (uri (string-append "https://mujs.com/downloads/mujs-"
429 version ".tar.xz"))
89ba894e
EF
430 (sha256
431 (base32
cb5b5149 432 "1q9w2dcspfp580pzx7sw7x9gbn8j0ak6dvj75wd1ml3f3q3i43df"))))
89ba894e
EF
433 (build-system gnu-build-system)
434 (arguments
f8ddf719
EF
435 '(#:phases
436 (modify-phases %standard-phases
437 (delete 'configure) ; no configure
438 (add-after 'install 'install-shared-library
cb5b5149
EF
439 (lambda* (#:key (make-flags '()) #:allow-other-keys)
440 (apply invoke "make" "install-shared" make-flags))))
89ba894e
EF
441 #:make-flags (list (string-append "prefix=" (assoc-ref %outputs "out"))
442 (string-append "CC=gcc"))
99863166
TGR
443 #:tests? #f)) ; no tests
444 (inputs
445 `(("readline" ,readline)))
cb5b5149 446 (home-page "https://mujs.com/")
89ba894e
EF
447 (synopsis "JavaScript interpreter written in C")
448 (description "MuJS is a lightweight Javascript interpreter designed for
449embedding in other software to extend them with scripting capabilities. MuJS
450was designed with a focus on small size, correctness, and simplicity. It is
451written in portable C and implements ECMAScript as specified by ECMA-262. The
452interface for binding with native code is designed to be as simple as possible
453to use, and is very similar to Lua. There is no need to interact with byzantine
454C++ template mechanisms, or worry about marking and unmarking garbage collection
455roots, or wrestle with obscure build systems.")
456 (license license:isc)))