diff options
| author | Tobias Geerinckx-Rice <me@tobias.gr> | 2018-08-28 22:04:16 +0200 |
|---|---|---|
| committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2018-08-30 04:42:54 +0200 |
| commit | 9986316618c471a9a100d1b317a342aee8d5e6df (patch) | |
| tree | d6d0faa63eb3da5c7b03d54269e68b91a0617d4b /gnu/packages/javascript.scm | |
| parent | bfb994d8be24d27378d77d0d280cf01b44eaa344 (diff) | |
gnu: mujs: Update to 1.0.4.
* gnu/packages/javascript.scm (mujs): Update to 1.0.4.
Diffstat (limited to 'gnu/packages/javascript.scm')
| -rw-r--r-- | gnu/packages/javascript.scm | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/gnu/packages/javascript.scm b/gnu/packages/javascript.scm index 3a9e88ad08b..75517caf6b9 100644 --- a/gnu/packages/javascript.scm +++ b/gnu/packages/javascript.scm | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | ;;; GNU Guix --- Functional package management for GNU | 1 | ;;; GNU Guix --- Functional package management for GNU |
| 2 | ;;; Copyright © 2017 Arun Isaac <arunisaac@systemreboot.net> | 2 | ;;; Copyright © 2017 Arun Isaac <arunisaac@systemreboot.net> |
| 3 | ;;; Copyright © 2017 Ricardo Wurmus <rekado@elephly.net> | 3 | ;;; Copyright © 2017 Ricardo Wurmus <rekado@elephly.net> |
| 4 | ;;; Copyright © 2017 Tobias Geerinckx-Rice <me@tobias.gr> | 4 | ;;; Copyright © 2017, 2018 Tobias Geerinckx-Rice <me@tobias.gr> |
| 5 | ;;; Copyright © 2017 Efraim Flashner <efraim@flashner.co.il> | 5 | ;;; Copyright © 2017 Efraim Flashner <efraim@flashner.co.il> |
| 6 | ;;; Copyright © 2018 Nicolas Goaziou <mail@nicolasgoaziou.fr> | 6 | ;;; Copyright © 2018 Nicolas Goaziou <mail@nicolasgoaziou.fr> |
| 7 | ;;; | 7 | ;;; |
| @@ -26,6 +26,7 @@ | |||
| 26 | #:use-module (gnu packages base) | 26 | #:use-module (gnu packages base) |
| 27 | #:use-module (gnu packages compression) | 27 | #:use-module (gnu packages compression) |
| 28 | #:use-module (gnu packages lisp) | 28 | #:use-module (gnu packages lisp) |
| 29 | #:use-module (gnu packages readline) | ||
| 29 | #:use-module (guix packages) | 30 | #:use-module (guix packages) |
| 30 | #:use-module (guix download) | 31 | #:use-module (guix download) |
| 31 | #:use-module (guix git-download) | 32 | #:use-module (guix git-download) |
| @@ -412,7 +413,7 @@ external server.") | |||
| 412 | (define-public mujs | 413 | (define-public mujs |
| 413 | (package | 414 | (package |
| 414 | (name "mujs") | 415 | (name "mujs") |
| 415 | (version "1.0.3") | 416 | (version "1.0.4") |
| 416 | (source (origin | 417 | (source (origin |
| 417 | (method git-fetch) | 418 | (method git-fetch) |
| 418 | (uri (git-reference | 419 | (uri (git-reference |
| @@ -421,14 +422,16 @@ external server.") | |||
| 421 | (file-name (string-append name "-" version "-checkout")) | 422 | (file-name (string-append name "-" version "-checkout")) |
| 422 | (sha256 | 423 | (sha256 |
| 423 | (base32 | 424 | (base32 |
| 424 | "15ml3rzjl44lqdb1yxipdh8bhh0rvk2g6w6sjv667q8xywijwqv8")))) | 425 | "1ly0yybs66nk63517kg4dmdc7dbikhqqqf2r2kvccgzzvv6k0vs8")))) |
| 425 | (build-system gnu-build-system) | 426 | (build-system gnu-build-system) |
| 426 | (arguments | 427 | (arguments |
| 427 | '(#:phases (modify-phases %standard-phases | 428 | '(#:phases (modify-phases %standard-phases |
| 428 | (delete 'configure)) ; no configure | 429 | (delete 'configure)) ; no configure |
| 429 | #:make-flags (list (string-append "prefix=" (assoc-ref %outputs "out")) | 430 | #:make-flags (list (string-append "prefix=" (assoc-ref %outputs "out")) |
| 430 | (string-append "CC=gcc")) | 431 | (string-append "CC=gcc")) |
| 431 | #:tests? #f)) ; no tests | 432 | #:tests? #f)) ; no tests |
| 433 | (inputs | ||
| 434 | `(("readline" ,readline))) | ||
| 432 | (home-page "https://artifex.com/mujs/") | 435 | (home-page "https://artifex.com/mujs/") |
| 433 | (synopsis "JavaScript interpreter written in C") | 436 | (synopsis "JavaScript interpreter written in C") |
| 434 | (description "MuJS is a lightweight Javascript interpreter designed for | 437 | (description "MuJS is a lightweight Javascript interpreter designed for |
