guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

03/04: gnu: Add mujs.


From: Efraim Flashner
Subject: 03/04: gnu: Add mujs.
Date: Sun, 12 Nov 2017 12:39:31 -0500 (EST)

efraim pushed a commit to branch master
in repository guix.

commit 89ba894eb37cacbe8c38863ec63e2826f85610aa
Author: Efraim Flashner <address@hidden>
Date:   Sun Nov 12 18:43:20 2017 +0200

    gnu: Add mujs.
    
    * gnu/packages/javascript.scm (mujs): New variable.
---
 gnu/packages/javascript.scm | 34 ++++++++++++++++++++++++++++++++++
 1 file changed, 34 insertions(+)

diff --git a/gnu/packages/javascript.scm b/gnu/packages/javascript.scm
index 2d1f6ac..1fe62d2 100644
--- a/gnu/packages/javascript.scm
+++ b/gnu/packages/javascript.scm
@@ -2,6 +2,7 @@
 ;;; Copyright © 2017 Arun Isaac <address@hidden>
 ;;; Copyright © 2017 Ricardo Wurmus <address@hidden>
 ;;; Copyright © 2017 Tobias Geerinckx-Rice <address@hidden>
+;;; Copyright © 2017 Efraim Flashner <address@hidden>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -27,6 +28,7 @@
   #:use-module (guix packages)
   #:use-module (guix download)
   #:use-module (guix git-download)
+  #:use-module (guix build-system gnu)
   #:use-module (guix build-system trivial)
   #:use-module (guix build-system minify))
 
@@ -365,3 +367,35 @@ possible.  Many of these shams are intended only to allow 
code to be written
 to ES5 without causing run-time errors in older engines.  In many cases, this
 means that these shams cause many ES5 methods to silently fail.")
     (license license:expat)))
+
+(define-public mujs
+  (package
+    (name "mujs")
+    (version "1.0.1")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    (url "http://git.ghostscript.com/mujs.git";)
+                    (commit version)))
+              (file-name (string-append name "-" version "-checkout"))
+              (sha256
+               (base32
+                "0ch0s3vqs7agf65gbks32bj44nk1dr2s23ki47b0bhdhzvw9q93j"))))
+    (build-system gnu-build-system)
+    (arguments
+     '(#:phases (modify-phases %standard-phases
+                  (delete 'configure)) ; no configure
+       #:make-flags (list (string-append "prefix=" (assoc-ref %outputs "out"))
+                          (string-append "CC=gcc"))
+       #:tests? #f)) ; no tests
+    (home-page "http://dev.mujs.com";)
+    (synopsis "JavaScript interpreter written in C")
+    (description "MuJS is a lightweight Javascript interpreter designed for
+embedding in other software to extend them with scripting capabilities.  MuJS
+was designed with a focus on small size, correctness, and simplicity.  It is
+written in portable C and implements ECMAScript as specified by ECMA-262.  The
+interface for binding with native code is designed to be as simple as possible
+to use, and is very similar to Lua.  There is no need to interact with 
byzantine
+C++ template mechanisms, or worry about marking and unmarking garbage 
collection
+roots, or wrestle with obscure build systems.")
+    (license license:isc)))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]