spidermonkey: add meta

This commit is contained in:
Nikolay Amiantov 2016-05-01 12:37:48 +03:00
parent 28bd8ba1fa
commit 37563c2d96

View file

@ -24,4 +24,11 @@ stdenv.mkDerivation rec {
CFLAGS = "-DPIC -fPIC -DJS_C_STRINGS_ARE_UTF8";
makeFlags = "-f ${makefile} JS_DIST=\${out} BUILD_OPT=1 JS_READLINE=1";
meta = with stdenv.lib; {
description = "Mozilla's JavaScript engine written in C/C++";
homepage = "https://developer.mozilla.org/en-US/docs/Mozilla/Projects/SpiderMonkey";
license = licenses.mpl20;
platforms = platforms.all;
};
}