duktape: init at 2.2.0

This commit is contained in:
Francesco Gazzetta 2018-01-26 11:26:52 +00:00
parent 92e1c17cd3
commit fd7acb9218
2 changed files with 33 additions and 0 deletions

View File

@ -0,0 +1,31 @@
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "duktape-${version}";
version = "2.2.0";
src = fetchurl {
url = "http://duktape.org/duktape-${version}.tar.xz";
sha256 = "050csp065ll67dck94s0vdad5r5ck4jwsz1fn1y0fcvn88325xv2";
};
buildPhase = ''
make -f Makefile.sharedlibrary
make -f Makefile.cmdline
'';
installPhase = ''
install -d $out/bin
install -m755 duk $out/bin/
install -d $out/lib
install -m755 libduktape* $out/lib/
'';
enableParallelBuilding = true;
meta = with stdenv.lib; {
description = "An embeddable Javascript engine, with a focus on portability and compact footprint";
homepage = "http://duktape.org/";
downloadPage = "http://duktape.org/download.html";
license = licenses.mit;
maintainers = [ maintainers.fgaz ];
platforms = platforms.linux;
};
}

View File

@ -6685,6 +6685,8 @@ with pkgs;
dhall-text = haskell.lib.justStaticExecutables haskellPackages.dhall-text;
duktape = callPackage ../development/interpreters/duktape { };
beam = callPackage ./beam-packages.nix { };
inherit (beam.interpreters)