nixpkgs/pkgs/development/interpreters/duktape/default.nix

33 lines
905 B
Nix
Raw Normal View History

2018-01-26 11:26:52 +00:00
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "duktape-${version}";
2018-08-06 11:15:50 +00:00
version = "2.3.0";
2018-01-26 11:26:52 +00:00
src = fetchurl {
url = "http://duktape.org/duktape-${version}.tar.xz";
2018-08-06 11:15:50 +00:00
sha256 = "1s5g8lg0dga6x3rcq328a6hsd2sk2vzwq9zfmskjh5h6n8x2yvpd";
2018-01-26 11:26:52 +00:00
};
buildPhase = ''
make -f Makefile.sharedlibrary
make -f Makefile.cmdline
'';
installPhase = ''
install -d $out/bin
install -m755 duk $out/bin/
install -d $out/lib
install -d $out/include
make -f Makefile.sharedlibrary install INSTALL_PREFIX=$out
2018-01-26 11:26:52 +00:00
'';
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;
};
}